home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / GCC257S6.ZIP / src / gcc-257 / tree.c < prev    next >
C/C++ Source or Header  |  1993-10-10  |  105KB  |  3,781 lines

  1. /* Language-independent node constructors for parse phase of GNU compiler.
  2.    Copyright (C) 1987, 1988, 1992, 1993 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU CC.
  5.  
  6. GNU CC is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU CC is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU CC; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20.  
  21. /* This file contains the low level primitives for operating on tree nodes,
  22.    including allocation, list operations, interning of identifiers,
  23.    construction of data type nodes and statement nodes,
  24.    and construction of type conversion nodes.  It also contains
  25.    tables index by tree code that describe how to take apart
  26.    nodes of that code.
  27.  
  28.    It is intended to be language-independent, but occasionally
  29.    calls language-dependent routines defined (for C) in typecheck.c.
  30.  
  31.    The low-level allocation routines oballoc and permalloc
  32.    are used also for allocating many other kinds of objects
  33.    by all passes of the compiler.  */
  34.  
  35. #include "config.h"
  36. #include "flags.h"
  37. #include "tree.h"
  38. #include "function.h"
  39. #include "obstack.h"
  40. #include "gvarargs.h"
  41. #include <stdio.h>
  42.  
  43. #define obstack_chunk_alloc xmalloc
  44. #define obstack_chunk_free free
  45.  
  46. /* Tree nodes of permanent duration are allocated in this obstack.
  47.    They are the identifier nodes, and everything outside of
  48.    the bodies and parameters of function definitions.  */
  49.  
  50. struct obstack permanent_obstack;
  51.  
  52. /* The initial RTL, and all ..._TYPE nodes, in a function
  53.    are allocated in this obstack.  Usually they are freed at the
  54.    end of the function, but if the function is inline they are saved.
  55.    For top-level functions, this is maybepermanent_obstack.
  56.    Separate obstacks are made for nested functions.  */
  57.  
  58. struct obstack *function_maybepermanent_obstack;
  59.  
  60. /* This is the function_maybepermanent_obstack for top-level functions.  */
  61.  
  62. struct obstack maybepermanent_obstack;
  63.  
  64. /* The contents of the current function definition are allocated
  65.    in this obstack, and all are freed at the end of the function.
  66.    For top-level functions, this is temporary_obstack.
  67.    Separate obstacks are made for nested functions.  */
  68.  
  69. struct obstack *function_obstack;
  70.  
  71. /* This is used for reading initializers of global variables.  */
  72.  
  73. struct obstack temporary_obstack;
  74.  
  75. /* The tree nodes of an expression are allocated
  76.    in this obstack, and all are freed at the end of the expression.  */
  77.  
  78. struct obstack momentary_obstack;
  79.  
  80. /* The tree nodes of a declarator are allocated
  81.    in this obstack, and all are freed when the declarator
  82.    has been parsed.  */
  83.  
  84. static struct obstack temp_decl_obstack;
  85.  
  86. /* This points at either permanent_obstack
  87.    or the current function_maybepermanent_obstack.  */
  88.  
  89. struct obstack *saveable_obstack;
  90.  
  91. /* This is same as saveable_obstack during parse and expansion phase;
  92.    it points to the current function's obstack during optimization.
  93.    This is the obstack to be used for creating rtl objects.  */
  94.  
  95. struct obstack *rtl_obstack;
  96.  
  97. /* This points at either permanent_obstack or the current function_obstack.  */
  98.  
  99. struct obstack *current_obstack;
  100.  
  101. /* This points at either permanent_obstack or the current function_obstack
  102.    or momentary_obstack.  */
  103.  
  104. struct obstack *expression_obstack;
  105.  
  106. /* Stack of obstack selections for push_obstacks and pop_obstacks.  */
  107.  
  108. struct obstack_stack
  109. {
  110.   struct obstack_stack *next;
  111.   struct obstack *current;
  112.   struct obstack *saveable;
  113.   struct obstack *expression;
  114.   struct obstack *rtl;
  115. };
  116.  
  117. struct obstack_stack *obstack_stack;
  118.  
  119. /* Obstack for allocating struct obstack_stack entries.  */
  120.  
  121. static struct obstack obstack_stack_obstack;
  122.  
  123. /* Addresses of first objects in some obstacks.
  124.    This is for freeing their entire contents.  */
  125. char *maybepermanent_firstobj;
  126. char *temporary_firstobj;
  127. char *momentary_firstobj;
  128. char *temp_decl_firstobj;
  129.  
  130. /* Nonzero means all ..._TYPE nodes should be allocated permanently.  */
  131.  
  132. int all_types_permanent;
  133.  
  134. /* Stack of places to restore the momentary obstack back to.  */
  135.    
  136. struct momentary_level
  137. {
  138.   /* Pointer back to previous such level.  */
  139.   struct momentary_level *prev;
  140.   /* First object allocated within this level.  */
  141.   char *base;
  142.   /* Value of expression_obstack saved at entry to this level.  */
  143.   struct obstack *obstack;
  144. };
  145.  
  146. struct momentary_level *momentary_stack;
  147.  
  148. /* Table indexed by tree code giving a string containing a character
  149.    classifying the tree code.  Possibilities are
  150.    t, d, s, c, r, <, 1, 2 and e.  See tree.def for details.  */
  151.  
  152. #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
  153.  
  154. char *standard_tree_code_type[] = {
  155. #include "tree.def"
  156. };
  157. #undef DEFTREECODE
  158.  
  159. /* Table indexed by tree code giving number of expression
  160.    operands beyond the fixed part of the node structure.
  161.    Not used for types or decls.  */
  162.  
  163. #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
  164.  
  165. int standard_tree_code_length[] = {
  166. #include "tree.def"
  167. };
  168. #undef DEFTREECODE
  169.  
  170. /* Names of tree components.
  171.    Used for printing out the tree and error messages.  */
  172. #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
  173.  
  174. char *standard_tree_code_name[] = {
  175. #include "tree.def"
  176. };
  177. #undef DEFTREECODE
  178.  
  179. /* Table indexed by tree code giving a string containing a character
  180.    classifying the tree code.  Possibilities are
  181.    t, d, s, c, r, e, <, 1 and 2.  See tree.def for details.  */
  182.  
  183. char **tree_code_type;
  184.  
  185. /* Table indexed by tree code giving number of expression
  186.    operands beyond the fixed part of the node structure.
  187.    Not used for types or decls.  */
  188.  
  189. int *tree_code_length;
  190.  
  191. /* Table indexed by tree code giving name of tree code, as a string.  */
  192.  
  193. char **tree_code_name;
  194.  
  195. /* Statistics-gathering stuff.  */
  196. typedef enum
  197. {
  198.   d_kind,
  199.   t_kind,
  200.   b_kind,
  201.   s_kind,
  202.   r_kind,
  203.   e_kind,
  204.   c_kind,
  205.   id_kind,
  206.   op_id_kind,
  207.   perm_list_kind,
  208.   temp_list_kind,
  209.   vec_kind,
  210.   x_kind,
  211.   lang_decl,
  212.   lang_type,
  213.   all_kinds
  214. } tree_node_kind;
  215.  
  216. int tree_node_counts[(int)all_kinds];
  217. int tree_node_sizes[(int)all_kinds];
  218. int id_string_size = 0;
  219.  
  220. char *tree_node_kind_names[] = {
  221.   "decls",
  222.   "types",
  223.   "blocks",
  224.   "stmts",
  225.   "refs",
  226.   "exprs",
  227.   "constants",
  228.   "identifiers",
  229.   "op_identifiers",
  230.   "perm_tree_lists",
  231.   "temp_tree_lists",
  232.   "vecs",
  233.   "random kinds",
  234.   "lang_decl kinds",
  235.   "lang_type kinds"
  236. };
  237.  
  238. /* Hash table for uniquizing IDENTIFIER_NODEs by name.  */
  239.  
  240. #define MAX_HASH_TABLE 1009
  241. static tree hash_table[MAX_HASH_TABLE];    /* id hash buckets */
  242.  
  243. /* 0 while creating built-in identifiers.  */
  244. static int do_identifier_warnings;
  245.  
  246. /* Unique id for next decl created.  */
  247. static int next_decl_uid;
  248. /* Unique id for next type created.  */
  249. static int next_type_uid = 1;
  250.  
  251. extern char *mode_name[];
  252.  
  253. void gcc_obstack_init ();
  254. static tree stabilize_reference_1 ();
  255.  
  256. /* Init the principal obstacks.  */
  257.  
  258. void
  259. init_obstacks ()
  260. {
  261.   gcc_obstack_init (&obstack_stack_obstack);
  262.   gcc_obstack_init (&permanent_obstack);
  263.  
  264.   gcc_obstack_init (&temporary_obstack);
  265.   temporary_firstobj = (char *) obstack_alloc (&temporary_obstack, 0);
  266.   gcc_obstack_init (&momentary_obstack);
  267.   momentary_firstobj = (char *) obstack_alloc (&momentary_obstack, 0);
  268.   gcc_obstack_init (&maybepermanent_obstack);
  269.   maybepermanent_firstobj
  270.     = (char *) obstack_alloc (&maybepermanent_obstack, 0);
  271.   gcc_obstack_init (&temp_decl_obstack);
  272.   temp_decl_firstobj = (char *) obstack_alloc (&temp_decl_obstack, 0);
  273.  
  274.   function_obstack = &temporary_obstack;
  275.   function_maybepermanent_obstack = &maybepermanent_obstack;
  276.   current_obstack = &permanent_obstack;
  277.   expression_obstack = &permanent_obstack;
  278.   rtl_obstack = saveable_obstack = &permanent_obstack;
  279.  
  280.   /* Init the hash table of identifiers.  */
  281.   bzero (hash_table, sizeof hash_table);
  282. }
  283.  
  284. void
  285. gcc_obstack_init (obstack)
  286.      struct obstack *obstack;
  287. {
  288.   /* Let particular systems override the size of a chunk.  */
  289. #ifndef OBSTACK_CHUNK_SIZE
  290. #define OBSTACK_CHUNK_SIZE 0
  291. #endif
  292.   /* Let them override the alloc and free routines too.  */
  293. #ifndef OBSTACK_CHUNK_ALLOC
  294. #define OBSTACK_CHUNK_ALLOC xmalloc
  295. #endif
  296. #ifndef OBSTACK_CHUNK_FREE
  297. #define OBSTACK_CHUNK_FREE free
  298. #endif
  299.   _obstack_begin (obstack, OBSTACK_CHUNK_SIZE, 0,
  300.           (void *(*) ()) OBSTACK_CHUNK_ALLOC,
  301.           (void (*) ()) OBSTACK_CHUNK_FREE);
  302. }
  303.  
  304. /* Save all variables describing the current status into the structure *P.
  305.    This is used before starting a nested function.  */
  306.  
  307. void
  308. save_tree_status (p)
  309.      struct function *p;
  310. {
  311.   p->all_types_permanent = all_types_permanent;
  312.   p->momentary_stack = momentary_stack;
  313.   p->maybepermanent_firstobj = maybepermanent_firstobj;
  314.   p->momentary_firstobj = momentary_firstobj;
  315.   p->function_obstack = function_obstack;
  316.   p->function_maybepermanent_obstack = function_maybepermanent_obstack;
  317.   p->current_obstack = current_obstack;
  318.   p->expression_obstack = expression_obstack;
  319.   p->saveable_obstack = saveable_obstack;
  320.   p->rtl_obstack = rtl_obstack;
  321.  
  322.   /* Objects that need to be saved in this function can be in the nonsaved
  323.      obstack of the enclosing function since they can't possibly be needed
  324.      once it has returned.  */
  325.   function_maybepermanent_obstack = function_obstack;
  326.  
  327.   function_obstack = (struct obstack *) xmalloc (sizeof (struct obstack));
  328.   gcc_obstack_init (function_obstack);
  329.  
  330.   current_obstack = &permanent_obstack;
  331.   expression_obstack = &permanent_obstack;
  332.   rtl_obstack = saveable_obstack = &permanent_obstack;
  333.  
  334.   momentary_firstobj = (char *) obstack_finish (&momentary_obstack);
  335.   maybepermanent_firstobj
  336.     = (char *) obstack_finish (function_maybepermanent_obstack);
  337. }
  338.  
  339. /* Restore all variables describing the current status from the structure *P.
  340.    This is used after a nested function.  */
  341.  
  342. void
  343. restore_tree_status (p)
  344.      struct function *p;
  345. {
  346.   all_types_permanent = p->all_types_permanent;
  347.   momentary_stack = p->momentary_stack;
  348.  
  349.   obstack_free (&momentary_obstack, momentary_firstobj);
  350.  
  351.   /* Free saveable storage used by the function just compiled and not
  352.      saved.
  353.  
  354.      CAUTION: This is in function_obstack of the containing function.  So
  355.      we must be sure that we never allocate from that obstack during
  356.      the compilation of a nested function if we expect it to survive past the
  357.      nested function's end.  */
  358.   obstack_free (function_maybepermanent_obstack, maybepermanent_firstobj);
  359.  
  360.   obstack_free (function_obstack, 0);
  361.   free (function_obstack);
  362.  
  363.   momentary_firstobj = p->momentary_firstobj;
  364.   maybepermanent_firstobj = p->maybepermanent_firstobj;
  365.   function_obstack = p->function_obstack;
  366.   function_maybepermanent_obstack = p->function_maybepermanent_obstack;
  367.   current_obstack = p->current_obstack;
  368.   expression_obstack = p->expression_obstack;
  369.   saveable_obstack = p->saveable_obstack;
  370.   rtl_obstack = p->rtl_obstack;
  371. }
  372.  
  373. /* Start allocating on the temporary (per function) obstack.
  374.    This is done in start_function before parsing the function body,
  375.    and before each initialization at top level, and to go back
  376.    to temporary allocation after doing permanent_allocation.  */
  377.  
  378. void
  379. temporary_allocation ()
  380. {
  381.   /* Note that function_obstack at top level points to temporary_obstack.
  382.      But within a nested function context, it is a separate obstack.  */
  383.   current_obstack = function_obstack;
  384.   expression_obstack = function_obstack;
  385.   rtl_obstack = saveable_obstack = function_maybepermanent_obstack;
  386.   momentary_stack = 0;
  387. }
  388.  
  389. /* Start allocating on the permanent obstack but don't
  390.    free the temporary data.  After calling this, call
  391.    `permanent_allocation' to fully resume permanent allocation status.  */
  392.  
  393. void
  394. end_temporary_allocation ()
  395. {
  396.   current_obstack = &permanent_obstack;
  397.   expression_obstack = &permanent_obstack;
  398.   rtl_obstack = saveable_obstack = &permanent_obstack;
  399. }
  400.  
  401. /* Resume allocating on the temporary obstack, undoing
  402.    effects of `end_temporary_allocation'.  */
  403.  
  404. void
  405. resume_temporary_allocation ()
  406. {
  407.   current_obstack = function_obstack;
  408.   expression_obstack = function_obstack;
  409.   rtl_obstack = saveable_obstack = function_maybepermanent_obstack;
  410. }
  411.  
  412. /* While doing temporary allocation, switch to allocating in such a
  413.    way as to save all nodes if the function is inlined.  Call
  414.    resume_temporary_allocation to go back to ordinary temporary
  415.    allocation.  */
  416.  
  417. void
  418. saveable_allocation ()
  419. {
  420.   /* Note that function_obstack at top level points to temporary_obstack.
  421.      But within a nested function context, it is a separate obstack.  */
  422.   expression_obstack = current_obstack = saveable_obstack;
  423. }
  424.  
  425. /* Switch to current obstack CURRENT and maybepermanent obstack SAVEABLE,
  426.    recording the previously current obstacks on a stack.
  427.    This does not free any storage in any obstack.  */
  428.  
  429. void
  430. push_obstacks (current, saveable)
  431.      struct obstack *current, *saveable;
  432. {
  433.   struct obstack_stack *p
  434.     = (struct obstack_stack *) obstack_alloc (&obstack_stack_obstack,
  435.                           (sizeof (struct obstack_stack)));
  436.  
  437.   p->current = current_obstack;
  438.   p->saveable = saveable_obstack;
  439.   p->expression = expression_obstack;
  440.   p->rtl = rtl_obstack;
  441.   p->next = obstack_stack;
  442.   obstack_stack = p;
  443.  
  444.   current_obstack = current;
  445.   expression_obstack = current;
  446.   rtl_obstack = saveable_obstack = saveable;
  447. }
  448.  
  449. /* Save the current set of obstacks, but don't change them.  */
  450.  
  451. void
  452. push_obstacks_nochange ()
  453. {
  454.   struct obstack_stack *p
  455.     = (struct obstack_stack *) obstack_alloc (&obstack_stack_obstack,
  456.                           (sizeof (struct obstack_stack)));
  457.  
  458.   p->current = current_obstack;
  459.   p->saveable = saveable_obstack;
  460.   p->expression = expression_obstack;
  461.   p->rtl = rtl_obstack;
  462.   p->next = obstack_stack;
  463.   obstack_stack = p;
  464. }
  465.  
  466. /* Pop the obstack selection stack.  */
  467.  
  468. void
  469. pop_obstacks ()
  470. {
  471.   struct obstack_stack *p = obstack_stack;
  472.   obstack_stack = p->next;
  473.  
  474.   current_obstack = p->current;
  475.   saveable_obstack = p->saveable;
  476.   expression_obstack = p->expression;
  477.   rtl_obstack = p->rtl;
  478.  
  479.   obstack_free (&obstack_stack_obstack, p);
  480. }
  481.  
  482. /* Nonzero if temporary allocation is currently in effect.
  483.    Zero if currently doing permanent allocation.  */
  484.  
  485. int
  486. allocation_temporary_p ()
  487. {
  488.   return current_obstack != &permanent_obstack;
  489. }
  490.  
  491. /* Go back to allocating on the permanent obstack
  492.    and free everything in the temporary obstack.
  493.    This is done in finish_function after fully compiling a function.  */
  494.  
  495. void
  496. permanent_allocation ()
  497. {
  498.   /* Free up previous temporary obstack data */
  499.   obstack_free (&temporary_obstack, temporary_firstobj);
  500.   obstack_free (&momentary_obstack, momentary_firstobj);
  501.   obstack_free (&maybepermanent_obstack, maybepermanent_firstobj);
  502.   obstack_free (&temp_decl_obstack, temp_decl_firstobj);
  503.  
  504.   current_obstack = &permanent_obstack;
  505.   expression_obstack = &permanent_obstack;
  506.   rtl_obstack = saveable_obstack = &permanent_obstack;
  507. }
  508.  
  509. /* Save permanently everything on the maybepermanent_obstack.  */
  510.  
  511. void
  512. preserve_data ()
  513. {
  514.   maybepermanent_firstobj
  515.     = (char *) obstack_alloc (function_maybepermanent_obstack, 0);
  516. }
  517.  
  518. void
  519. preserve_initializer ()
  520. {
  521.   temporary_firstobj
  522.     = (char *) obstack_alloc (&temporary_obstack, 0);
  523.   momentary_firstobj
  524.     = (char *) obstack_alloc (&momentary_obstack, 0);
  525.   maybepermanent_firstobj
  526.     = (char *) obstack_alloc (function_maybepermanent_obstack, 0);
  527. }
  528.  
  529. /* Start allocating new rtl in current_obstack.
  530.    Use resume_temporary_allocation
  531.    to go back to allocating rtl in saveable_obstack.  */
  532.  
  533. void
  534. rtl_in_current_obstack ()
  535. {
  536.   rtl_obstack = current_obstack;
  537. }
  538.  
  539. /* Start allocating rtl from saveable_obstack.  Intended to be used after
  540.    a call to push_obstacks_nochange.  */
  541.  
  542. void
  543. rtl_in_saveable_obstack ()
  544. {
  545.   rtl_obstack = saveable_obstack;
  546. }
  547.  
  548. /* Allocate SIZE bytes in the current obstack
  549.    and return a pointer to them.
  550.    In practice the current obstack is always the temporary one.  */
  551.  
  552. char *
  553. oballoc (size)
  554.      int size;
  555. {
  556.   return (char *) obstack_alloc (current_obstack, size);
  557. }
  558.  
  559. /* Free the object PTR in the current obstack
  560.    as well as everything allocated since PTR.
  561.    In practice the current obstack is always the temporary one.  */
  562.  
  563. void
  564. obfree (ptr)
  565.      char *ptr;
  566. {
  567.   obstack_free (current_obstack, ptr);
  568. }
  569.  
  570. /* Allocate SIZE bytes in the permanent obstack
  571.    and return a pointer to them.  */
  572.  
  573. char *
  574. permalloc (size)
  575.      int size;
  576. {
  577.   return (char *) obstack_alloc (&permanent_obstack, size);
  578. }
  579.  
  580. /* Allocate NELEM items of SIZE bytes in the permanent obstack
  581.    and return a pointer to them.  The storage is cleared before
  582.    returning the value.  */
  583.  
  584. char *
  585. perm_calloc (nelem, size)
  586.      int nelem;
  587.      long size;
  588. {
  589.   char *rval = (char *) obstack_alloc (&permanent_obstack, nelem * size);
  590.   bzero (rval, nelem * size);
  591.   return rval;
  592. }
  593.  
  594. /* Allocate SIZE bytes in the saveable obstack
  595.    and return a pointer to them.  */
  596.  
  597. char *
  598. savealloc (size)
  599.      int size;
  600. {
  601.   return (char *) obstack_alloc (saveable_obstack, size);
  602. }
  603.  
  604. /* Print out which obstack an object is in.  */
  605.  
  606. void
  607. print_obstack_name (object, file, prefix)
  608.      char *object;
  609.      FILE *file;
  610.      char *prefix;
  611. {
  612.   struct obstack *obstack = NULL;
  613.   char *obstack_name = NULL;
  614.   struct function *p;
  615.  
  616.   for (p = outer_function_chain; p; p = p->next)
  617.     {
  618.       if (_obstack_allocated_p (p->function_obstack, object))
  619.     {
  620.       obstack = p->function_obstack;
  621.       obstack_name = "containing function obstack";
  622.     }
  623.       if (_obstack_allocated_p (p->function_maybepermanent_obstack, object))
  624.     {
  625.       obstack = p->function_maybepermanent_obstack;
  626.       obstack_name = "containing function maybepermanent obstack";
  627.     }
  628.     }
  629.  
  630.   if (_obstack_allocated_p (&obstack_stack_obstack, object))
  631.     {
  632.       obstack = &obstack_stack_obstack;
  633.       obstack_name = "obstack_stack_obstack";
  634.     }
  635.   else if (_obstack_allocated_p (function_obstack, object))
  636.     {
  637.       obstack = function_obstack;
  638.       obstack_name = "function obstack";
  639.     }
  640.   else if (_obstack_allocated_p (&permanent_obstack, object))
  641.     {
  642.       obstack = &permanent_obstack;
  643.       obstack_name = "permanent_obstack";
  644.     }
  645.   else if (_obstack_allocated_p (&momentary_obstack, object))
  646.     {
  647.       obstack = &momentary_obstack;
  648.       obstack_name = "momentary_obstack";
  649.     }
  650.   else if (_obstack_allocated_p (function_maybepermanent_obstack, object))
  651.     {
  652.       obstack = function_maybepermanent_obstack;
  653.       obstack_name = "function maybepermanent obstack";
  654.     }
  655.   else if (_obstack_allocated_p (&temp_decl_obstack, object))
  656.     {
  657.       obstack = &temp_decl_obstack;
  658.       obstack_name = "temp_decl_obstack";
  659.     }
  660.  
  661.   /* Check to see if the object is in the free area of the obstack. */
  662.   if (obstack != NULL)
  663.     {
  664.       if (object >= obstack->next_free
  665.       && object < obstack->chunk_limit)
  666.     fprintf (file, "%s in free portion of obstack %s",
  667.          prefix, obstack_name);
  668.       else
  669.     fprintf (file, "%s allocated from %s", prefix, obstack_name);
  670.     }
  671.   else
  672.     fprintf (file, "%s not allocated from any obstack", prefix);
  673. }
  674.  
  675. void
  676. debug_obstack (object)
  677.      char *object;
  678. {
  679.   print_obstack_name (object, stderr, "object");
  680.   fprintf (stderr, ".\n");
  681. }
  682.  
  683. /* Return 1 if OBJ is in the permanent obstack.
  684.    This is slow, and should be used only for debugging.
  685.    Use TREE_PERMANENT for other purposes.  */
  686.  
  687. int
  688. object_permanent_p (obj)
  689.      tree obj;
  690. {
  691.   return _obstack_allocated_p (&permanent_obstack, obj);
  692. }
  693.  
  694. /* Start a level of momentary allocation.
  695.    In C, each compound statement has its own level
  696.    and that level is freed at the end of each statement.
  697.    All expression nodes are allocated in the momentary allocation level.  */
  698.  
  699. void
  700. push_momentary ()
  701. {
  702.   struct momentary_level *tem
  703.     = (struct momentary_level *) obstack_alloc (&momentary_obstack,
  704.                         sizeof (struct momentary_level));
  705.   tem->prev = momentary_stack;
  706.   tem->base = (char *) obstack_base (&momentary_obstack);
  707.   tem->obstack = expression_obstack;
  708.   momentary_stack = tem;
  709.   expression_obstack = &momentary_obstack;
  710. }
  711.  
  712. /* Free all the storage in the current momentary-allocation level.
  713.    In C, this happens at the end of each statement.  */
  714.  
  715. void
  716. clear_momentary ()
  717. {
  718.   obstack_free (&momentary_obstack, momentary_stack->base);
  719. }
  720.  
  721. /* Discard a level of momentary allocation.
  722.    In C, this happens at the end of each compound statement.
  723.    Restore the status of expression node allocation
  724.    that was in effect before this level was created.  */
  725.  
  726. void
  727. pop_momentary ()
  728. {
  729.   struct momentary_level *tem = momentary_stack;
  730.   momentary_stack = tem->prev;
  731.   expression_obstack = tem->obstack;
  732.   obstack_free (&momentary_obstack, tem);
  733. }
  734.  
  735. /* Pop back to the previous level of momentary allocation,
  736.    but don't free any momentary data just yet.  */
  737.  
  738. void
  739. pop_momentary_nofree ()
  740. {
  741.   struct momentary_level *tem = momentary_stack;
  742.   momentary_stack = tem->prev;
  743.   expression_obstack = tem->obstack;
  744. }
  745.  
  746. /* Call when starting to parse a declaration:
  747.    make expressions in the declaration last the length of the function.
  748.    Returns an argument that should be passed to resume_momentary later.  */
  749.  
  750. int
  751. suspend_momentary ()
  752. {
  753.   register int tem = expression_obstack == &momentary_obstack;
  754.   expression_obstack = saveable_obstack;
  755.   return tem;
  756. }
  757.  
  758. /* Call when finished parsing a declaration:
  759.    restore the treatment of node-allocation that was
  760.    in effect before the suspension.
  761.    YES should be the value previously returned by suspend_momentary.  */
  762.  
  763. void
  764. resume_momentary (yes)
  765.      int yes;
  766. {
  767.   if (yes)
  768.     expression_obstack = &momentary_obstack;
  769. }
  770.  
  771. /* Init the tables indexed by tree code.
  772.    Note that languages can add to these tables to define their own codes.  */
  773.  
  774. void
  775. init_tree_codes ()
  776. {
  777.   tree_code_type = (char **) xmalloc (sizeof (standard_tree_code_type));
  778.   tree_code_length = (int *) xmalloc (sizeof (standard_tree_code_length));
  779.   tree_code_name = (char **) xmalloc (sizeof (standard_tree_code_name));
  780.   bcopy (standard_tree_code_type, tree_code_type,
  781.      sizeof (standard_tree_code_type));
  782.   bcopy (standard_tree_code_length, tree_code_length,
  783.      sizeof (standard_tree_code_length));
  784.   bcopy (standard_tree_code_name, tree_code_name,
  785.      sizeof (standard_tree_code_name));
  786. }
  787.  
  788. /* Return a newly allocated node of code CODE.
  789.    Initialize the node's unique id and its TREE_PERMANENT flag.
  790.    For decl and type nodes, some other fields are initialized.
  791.    The rest of the node is initialized to zero.
  792.  
  793.    Achoo!  I got a code in the node.  */
  794.  
  795. tree
  796. make_node (code)
  797.      enum tree_code code;
  798. {
  799.   register tree t;
  800.   register int type = TREE_CODE_CLASS (code);
  801.   register int length;
  802.   register struct obstack *obstack = current_obstack;
  803.   register int i;
  804.   register tree_node_kind kind;
  805.  
  806.   switch (type)
  807.     {
  808.     case 'd':  /* A decl node */
  809. #ifdef GATHER_STATISTICS
  810.       kind = d_kind;
  811. #endif
  812.       length = sizeof (struct tree_decl);
  813.       /* All decls in an inline function need to be saved.  */
  814.       if (obstack != &permanent_obstack)
  815.     obstack = saveable_obstack;
  816.  
  817.       /* PARM_DECLs go on the context of the parent. If this is a nested
  818.      function, then we must allocate the PARM_DECL on the parent's
  819.      obstack, so that they will live to the end of the parent's
  820.      closing brace.  This is neccesary in case we try to inline the
  821.      function into its parent.
  822.  
  823.      PARM_DECLs of top-level functions do not have this problem.  However,
  824.      we allocate them where we put the FUNCTION_DECL for languauges such as
  825.      Ada that need to consult some flags in the PARM_DECLs of the function
  826.      when calling it. 
  827.  
  828.      See comment in restore_tree_status for why we can't put this
  829.      in function_obstack.  */
  830.       if (code == PARM_DECL && obstack != &permanent_obstack)
  831.     {
  832.       tree context = 0;
  833.       if (current_function_decl)
  834.         context = decl_function_context (current_function_decl);
  835.  
  836.       if (context)
  837.         obstack
  838.           = find_function_data (context)->function_maybepermanent_obstack;
  839.     }
  840.       break;
  841.  
  842.     case 't':  /* a type node */
  843. #ifdef GATHER_STATISTICS
  844.       kind = t_kind;
  845. #endif
  846.       length = sizeof (struct tree_type);
  847.       /* All data types are put where we can preserve them if nec.  */
  848.       if (obstack != &permanent_obstack)
  849.     obstack = all_types_permanent ? &permanent_obstack : saveable_obstack;
  850.       break;
  851.  
  852.     case 'b':  /* a lexical block */
  853. #ifdef GATHER_STATISTICS
  854.       kind = b_kind;
  855. #endif
  856.       length = sizeof (struct tree_block);
  857.       /* All BLOCK nodes are put where we can preserve them if nec.  */
  858.       if (obstack != &permanent_obstack)
  859.     obstack = saveable_obstack;
  860.       break;
  861.  
  862.     case 's':  /* an expression with side effects */
  863. #ifdef GATHER_STATISTICS
  864.       kind = s_kind;
  865.       goto usual_kind;
  866. #endif
  867.     case 'r':  /* a reference */
  868. #ifdef GATHER_STATISTICS
  869.       kind = r_kind;
  870.       goto usual_kind;
  871. #endif
  872.     case 'e':  /* an expression */
  873.     case '<':  /* a comparison expression */
  874.     case '1':  /* a unary arithmetic expression */
  875.     case '2':  /* a binary arithmetic expression */
  876. #ifdef GATHER_STATISTICS
  877.       kind = e_kind;
  878.     usual_kind:
  879. #endif
  880.       obstack = expression_obstack;
  881.       /* All BIND_EXPR nodes are put where we can preserve them if nec.  */
  882.       if (code == BIND_EXPR && obstack != &permanent_obstack)
  883.     obstack = saveable_obstack;
  884.       length = sizeof (struct tree_exp)
  885.     + (tree_code_length[(int) code] - 1) * sizeof (char *);
  886.       break;
  887.  
  888.     case 'c':  /* a constant */
  889. #ifdef GATHER_STATISTICS
  890.       kind = c_kind;
  891. #endif
  892.       obstack = expression_obstack;
  893.  
  894.       /* We can't use tree_code_length for INTEGER_CST, since the number of
  895.      words is machine-dependent due to varying length of HOST_WIDE_INT,
  896.      which might be wider than a pointer (e.g., long long).  Similarly
  897.      for REAL_CST, since the number of words is machine-dependent due
  898.      to varying size and alignment of `double'.  */
  899.  
  900.       if (code == INTEGER_CST)
  901.     length = sizeof (struct tree_int_cst);
  902.       else if (code == REAL_CST)
  903.     length = sizeof (struct tree_real_cst);
  904.       else
  905.     length = sizeof (struct tree_common)
  906.       + tree_code_length[(int) code] * sizeof (char *);
  907.       break;
  908.  
  909.     case 'x':  /* something random, like an identifier.  */
  910. #ifdef GATHER_STATISTICS
  911.       if (code == IDENTIFIER_NODE)
  912.     kind = id_kind;
  913.       else if (code == OP_IDENTIFIER)
  914.     kind = op_id_kind;
  915.       else if (code == TREE_VEC)
  916.     kind = vec_kind;
  917.       else
  918.     kind = x_kind;
  919. #endif
  920.       length = sizeof (struct tree_common)
  921.     + tree_code_length[(int) code] * sizeof (char *);
  922.       /* Identifier nodes are always permanent since they are
  923.      unique in a compiler run.  */
  924.       if (code == IDENTIFIER_NODE) obstack = &permanent_obstack;
  925.     }
  926.  
  927.   t = (tree) obstack_alloc (obstack, length);
  928.  
  929. #ifdef GATHER_STATISTICS
  930.   tree_node_counts[(int)kind]++;
  931.   tree_node_sizes[(int)kind] += length;
  932. #endif
  933.  
  934.   /* Clear a word at a time.  */
  935.   for (i = (length / sizeof (int)) - 1; i >= 0; i--)
  936.     ((int *) t)[i] = 0;
  937.   /* Clear any extra bytes.  */
  938.   for (i = length / sizeof (int) * sizeof (int); i < length; i++)
  939.     ((char *) t)[i] = 0;
  940.  
  941.   TREE_SET_CODE (t, code);
  942.   if (obstack == &permanent_obstack)
  943.     TREE_PERMANENT (t) = 1;
  944.  
  945.   switch (type)
  946.     {
  947.     case 's':
  948.       TREE_SIDE_EFFECTS (t) = 1;
  949.       TREE_TYPE (t) = void_type_node;
  950.       break;
  951.  
  952.     case 'd':
  953.       if (code != FUNCTION_DECL)
  954.     DECL_ALIGN (t) = 1;
  955.       DECL_IN_SYSTEM_HEADER (t)
  956.     = in_system_header && (obstack == &permanent_obstack);
  957.       DECL_SOURCE_LINE (t) = lineno;
  958.       DECL_SOURCE_FILE (t) = (input_filename) ? input_filename : "<built-in>";
  959.       DECL_UID (t) = next_decl_uid++;
  960.       break;
  961.  
  962.     case 't':
  963.       TYPE_UID (t) = next_type_uid++;
  964.       TYPE_ALIGN (t) = 1;
  965.       TYPE_MAIN_VARIANT (t) = t;
  966.       TYPE_OBSTACK (t) = obstack;
  967.       break;
  968.  
  969.     case 'c':
  970.       TREE_CONSTANT (t) = 1;
  971.       break;
  972.     }
  973.  
  974.   return t;
  975. }
  976.  
  977. /* Return a new node with the same contents as NODE
  978.    except that its TREE_CHAIN is zero and it has a fresh uid.  */
  979.  
  980. tree
  981. copy_node (node)
  982.      tree node;
  983. {
  984.   register tree t;
  985.   register enum tree_code code = TREE_CODE (node);
  986.   register int length;
  987.   register int i;
  988.  
  989.   switch (TREE_CODE_CLASS (code))
  990.     {
  991.     case 'd':  /* A decl node */
  992.       length = sizeof (struct tree_decl);
  993.       break;
  994.  
  995.     case 't':  /* a type node */
  996.       length = sizeof (struct tree_type);
  997.       break;
  998.  
  999.     case 'b':  /* a lexical block node */
  1000.       length = sizeof (struct tree_block);
  1001.       break;
  1002.  
  1003.     case 'r':  /* a reference */
  1004.     case 'e':  /* an expression */
  1005.     case 's':  /* an expression with side effects */
  1006.     case '<':  /* a comparison expression */
  1007.     case '1':  /* a unary arithmetic expression */
  1008.     case '2':  /* a binary arithmetic expression */
  1009.       length = sizeof (struct tree_exp)
  1010.     + (tree_code_length[(int) code] - 1) * sizeof (char *);
  1011.       break;
  1012.  
  1013.     case 'c':  /* a constant */
  1014.       /* We can't use tree_code_length for this, since the number of words
  1015.      is machine-dependent due to varying alignment of `double'.  */
  1016.       if (code == REAL_CST)
  1017.     {
  1018.       length = sizeof (struct tree_real_cst);
  1019.       break;
  1020.     }
  1021.  
  1022.     case 'x':  /* something random, like an identifier.  */
  1023.       length = sizeof (struct tree_common)
  1024.     + tree_code_length[(int) code] * sizeof (char *);
  1025.       if (code == TREE_VEC)
  1026.     length += (TREE_VEC_LENGTH (node) - 1) * sizeof (char *);
  1027.     }
  1028.  
  1029.   t = (tree) obstack_alloc (current_obstack, length);
  1030.  
  1031.   for (i = (length / sizeof (int)) - 1; i >= 0; i--)
  1032.     ((int *) t)[i] = ((int *) node)[i];
  1033.   /* Clear any extra bytes.  */
  1034.   for (i = length / sizeof (int) * sizeof (int); i < length; i++)
  1035.     ((char *) t)[i] = ((char *) node)[i];
  1036.  
  1037.   TREE_CHAIN (t) = 0;
  1038.  
  1039.   if (TREE_CODE_CLASS (code) == 'd')
  1040.     DECL_UID (t) = next_decl_uid++;
  1041.   else if (TREE_CODE_CLASS (code) == 't')
  1042.     {
  1043.       TYPE_UID (t) = next_type_uid++;
  1044.       TYPE_OBSTACK (t) = current_obstack;
  1045.     }
  1046.  
  1047.   TREE_PERMANENT (t) = (current_obstack == &permanent_obstack);
  1048.  
  1049.   return t;
  1050. }
  1051.  
  1052. /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
  1053.    For example, this can copy a list made of TREE_LIST nodes.  */
  1054.  
  1055. tree
  1056. copy_list (list)
  1057.      tree list;
  1058. {
  1059.   tree head;
  1060.   register tree prev, next;
  1061.  
  1062.   if (list == 0)
  1063.     return 0;
  1064.  
  1065.   head = prev = copy_node (list);
  1066.   next = TREE_CHAIN (list);
  1067.   while (next)
  1068.     {
  1069.       TREE_CHAIN (prev) = copy_node (next);
  1070.       prev = TREE_CHAIN (prev);
  1071.       next = TREE_CHAIN (next);
  1072.     }
  1073.   return head;
  1074. }
  1075.  
  1076. #define HASHBITS 30
  1077.  
  1078. /* Return an IDENTIFIER_NODE whose name is TEXT (a null-terminated string).
  1079.    If an identifier with that name has previously been referred to,
  1080.    the same node is returned this time.  */
  1081.  
  1082. tree
  1083. get_identifier (text)
  1084.      register char *text;
  1085. {
  1086.   register int hi;
  1087.   register int i;
  1088.   register tree idp;
  1089.   register int len, hash_len;
  1090.  
  1091.   /* Compute length of text in len.  */
  1092.   for (len = 0; text[len]; len++);
  1093.  
  1094.   /* Decide how much of that length to hash on */
  1095.   hash_len = len;
  1096.   if (warn_id_clash && len > id_clash_len)
  1097.     hash_len = id_clash_len;
  1098.  
  1099.   /* Compute hash code */
  1100.   hi = hash_len * 613 + (unsigned)text[0];
  1101.   for (i = 1; i < hash_len; i += 2)
  1102.     hi = ((hi * 613) + (unsigned)(text[i]));
  1103.  
  1104.   hi &= (1 << HASHBITS) - 1;
  1105.   hi %= MAX_HASH_TABLE;
  1106.   
  1107.   /* Search table for identifier */
  1108.   for (idp = hash_table[hi]; idp; idp = TREE_CHAIN (idp))
  1109.     if (IDENTIFIER_LENGTH (idp) == len
  1110.     && IDENTIFIER_POINTER (idp)[0] == text[0]
  1111.     && !bcmp (IDENTIFIER_POINTER (idp), text, len))
  1112.       return idp;        /* <-- return if found */
  1113.  
  1114.   /* Not found; optionally warn about a similar identifier */
  1115.   if (warn_id_clash && do_identifier_warnings && len >= id_clash_len)
  1116.     for (idp = hash_table[hi]; idp; idp = TREE_CHAIN (idp))
  1117.       if (!strncmp (IDENTIFIER_POINTER (idp), text, id_clash_len))
  1118.     {
  1119.       warning ("`%s' and `%s' identical in first %d characters",
  1120.            IDENTIFIER_POINTER (idp), text, id_clash_len);
  1121.       break;
  1122.     }
  1123.  
  1124.   if (tree_code_length[(int) IDENTIFIER_NODE] < 0)
  1125.     abort ();            /* set_identifier_size hasn't been called.  */
  1126.  
  1127.   /* Not found, create one, add to chain */
  1128.   idp = make_node (IDENTIFIER_NODE);
  1129.   IDENTIFIER_LENGTH (idp) = len;
  1130. #ifdef GATHER_STATISTICS
  1131.   id_string_size += len;
  1132. #endif
  1133.  
  1134.   IDENTIFIER_POINTER (idp) = obstack_copy0 (&permanent_obstack, text, len);
  1135.  
  1136.   TREE_CHAIN (idp) = hash_table[hi];
  1137.   hash_table[hi] = idp;
  1138.   return idp;            /* <-- return if created */
  1139. }
  1140.  
  1141. /* Enable warnings on similar identifiers (if requested).
  1142.    Done after the built-in identifiers are created.  */
  1143.  
  1144. void
  1145. start_identifier_warnings ()
  1146. {
  1147.   do_identifier_warnings = 1;
  1148. }
  1149.  
  1150. /* Record the size of an identifier node for the language in use.
  1151.    SIZE is the total size in bytes.
  1152.    This is called by the language-specific files.  This must be
  1153.    called before allocating any identifiers.  */
  1154.  
  1155. void
  1156. set_identifier_size (size)
  1157.      int size;
  1158. {
  1159.   tree_code_length[(int) IDENTIFIER_NODE]
  1160.     = (size - sizeof (struct tree_common)) / sizeof (tree);
  1161. }
  1162.  
  1163. /* Return a newly constructed INTEGER_CST node whose constant value
  1164.    is specified by the two ints LOW and HI.
  1165.    The TREE_TYPE is set to `int'. 
  1166.  
  1167.    This function should be used via the `build_int_2' macro.  */
  1168.  
  1169. tree
  1170. build_int_2_wide (low, hi)
  1171.      HOST_WIDE_INT low, hi;
  1172. {
  1173.   register tree t = make_node (INTEGER_CST);
  1174.   TREE_INT_CST_LOW (t) = low;
  1175.   TREE_INT_CST_HIGH (t) = hi;
  1176.   TREE_TYPE (t) = integer_type_node;
  1177.   return t;
  1178. }
  1179.  
  1180. /* Return a new REAL_CST node whose type is TYPE and value is D.  */
  1181.  
  1182. tree
  1183. build_real (type, d)
  1184.      tree type;
  1185.      REAL_VALUE_TYPE d;
  1186. {
  1187.   tree v;
  1188.  
  1189.   /* Check for valid float value for this type on this target machine;
  1190.      if not, can print error message and store a valid value in D.  */
  1191. #ifdef CHECK_FLOAT_VALUE
  1192.   CHECK_FLOAT_VALUE (TYPE_MODE (type), d);
  1193. #endif
  1194.  
  1195.   v = make_node (REAL_CST);
  1196.   TREE_TYPE (v) = type;
  1197.   TREE_REAL_CST (v) = d;
  1198.   return v;
  1199. }
  1200.  
  1201. /* Return a new REAL_CST node whose type is TYPE
  1202.    and whose value is the integer value of the INTEGER_CST node I.  */
  1203.  
  1204. #if !defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
  1205.  
  1206. REAL_VALUE_TYPE
  1207. real_value_from_int_cst (i)
  1208.      tree i;
  1209. {
  1210.   REAL_VALUE_TYPE d;
  1211.   REAL_VALUE_TYPE e;
  1212.   /* Some 386 compilers mishandle unsigned int to float conversions,
  1213.      so introduce a temporary variable E to avoid those bugs.  */
  1214.  
  1215. #ifdef REAL_ARITHMETIC
  1216.   if (! TREE_UNSIGNED (TREE_TYPE (i)))
  1217.     REAL_VALUE_FROM_INT (d, TREE_INT_CST_LOW (i), TREE_INT_CST_HIGH (i));
  1218.   else
  1219.     REAL_VALUE_FROM_UNSIGNED_INT (d, TREE_INT_CST_LOW (i), TREE_INT_CST_HIGH (i));
  1220. #else /* not REAL_ARITHMETIC */
  1221.   if (TREE_INT_CST_HIGH (i) < 0 && ! TREE_UNSIGNED (TREE_TYPE (i)))
  1222.     {
  1223.       d = (double) (~ TREE_INT_CST_HIGH (i));
  1224.       e = ((double) ((HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2))
  1225.         * (double) ((HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2)));
  1226.       d *= e;
  1227.       e = (double) (unsigned HOST_WIDE_INT) (~ TREE_INT_CST_LOW (i));
  1228.       d += e;
  1229.       d = (- d - 1.0);
  1230.     }
  1231.   else
  1232.     {
  1233.       d = (double) (unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (i);
  1234.       e = ((double) ((HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2))
  1235.         * (double) ((HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2)));
  1236.       d *= e;
  1237.       e = (double) (unsigned HOST_WIDE_INT) TREE_INT_CST_LOW (i);
  1238.       d += e;
  1239.     }
  1240. #endif /* not REAL_ARITHMETIC */
  1241.   return d;
  1242. }
  1243.  
  1244. /* This function can't be implemented if we can't do arithmetic
  1245.    on the float representation.  */
  1246.  
  1247. tree
  1248. build_real_from_int_cst (type, i)
  1249.      tree type;
  1250.      tree i;
  1251. {
  1252.   tree v;
  1253.   REAL_VALUE_TYPE d;
  1254.  
  1255.   v = make_node (REAL_CST);
  1256.   TREE_TYPE (v) = type;
  1257.  
  1258.   d = REAL_VALUE_TRUNCATE (TYPE_MODE (type), real_value_from_int_cst (i));
  1259.   /* Check for valid float value for this type on this target machine;
  1260.      if not, can print error message and store a valid value in D.  */
  1261. #ifdef CHECK_FLOAT_VALUE
  1262.   CHECK_FLOAT_VALUE (TYPE_MODE (type), d);
  1263. #endif
  1264.  
  1265.   TREE_REAL_CST (v) = d;
  1266.   return v;
  1267. }
  1268.  
  1269. #endif /* not REAL_IS_NOT_DOUBLE, or REAL_ARITHMETIC */
  1270.  
  1271. /* Return a newly constructed STRING_CST node whose value is
  1272.    the LEN characters at STR.
  1273.    The TREE_TYPE is not initialized.  */
  1274.  
  1275. tree
  1276. build_string (len, str)
  1277.      int len;
  1278.      char *str;
  1279. {
  1280.   /* Put the string in saveable_obstack since it will be placed in the RTL
  1281.      for an "asm" statement and will also be kept around a while if
  1282.      deferring constant output in varasm.c.  */
  1283.  
  1284.   register tree s = make_node (STRING_CST);
  1285.   TREE_STRING_LENGTH (s) = len;
  1286.   TREE_STRING_POINTER (s) = obstack_copy0 (saveable_obstack, str, len);
  1287.   return s;
  1288. }
  1289.  
  1290. /* Return a newly constructed COMPLEX_CST node whose value is
  1291.    specified by the real and imaginary parts REAL and IMAG.
  1292.    Both REAL and IMAG should be constant nodes.
  1293.    The TREE_TYPE is not initialized.  */
  1294.  
  1295. tree
  1296. build_complex (real, imag)
  1297.      tree real, imag;
  1298. {
  1299.   register tree t = make_node (COMPLEX_CST);
  1300.   TREE_REALPART (t) = real;
  1301.   TREE_IMAGPART (t) = imag;
  1302.   TREE_TYPE (t) = build_complex_type (TREE_TYPE (real));
  1303.   return t;
  1304. }
  1305.  
  1306. /* Build a newly constructed TREE_VEC node of length LEN.  */
  1307. tree
  1308. make_tree_vec (len)
  1309.      int len;
  1310. {
  1311.   register tree t;
  1312.   register int length = (len-1) * sizeof (tree) + sizeof (struct tree_vec);
  1313.   register struct obstack *obstack = current_obstack;
  1314.   register int i;
  1315.  
  1316. #ifdef GATHER_STATISTICS
  1317.   tree_node_counts[(int)vec_kind]++;
  1318.   tree_node_sizes[(int)vec_kind] += length;
  1319. #endif
  1320.  
  1321.   t = (tree) obstack_alloc (obstack, length);
  1322.  
  1323.   for (i = (length / sizeof (int)) - 1; i >= 0; i--)
  1324.     ((int *) t)[i] = 0;
  1325.  
  1326.   TREE_SET_CODE (t, TREE_VEC);
  1327.   TREE_VEC_LENGTH (t) = len;
  1328.   if (obstack == &permanent_obstack)
  1329.     TREE_PERMANENT (t) = 1;
  1330.  
  1331.   return t;
  1332. }
  1333.  
  1334. /* Return 1 if EXPR is the integer constant zero.  */
  1335.  
  1336. int
  1337. integer_zerop (expr)
  1338.      tree expr;
  1339. {
  1340.   STRIP_NOPS (expr);
  1341.  
  1342.   return (TREE_CODE (expr) == INTEGER_CST
  1343.       && TREE_INT_CST_LOW (expr) == 0
  1344.       && TREE_INT_CST_HIGH (expr) == 0);
  1345. }
  1346.  
  1347. /* Return 1 if EXPR is the integer constant one.  */
  1348.  
  1349. int
  1350. integer_onep (expr)
  1351.      tree expr;
  1352. {
  1353.   STRIP_NOPS (expr);
  1354.  
  1355.   return (TREE_CODE (expr) == INTEGER_CST
  1356.       && TREE_INT_CST_LOW (expr) == 1
  1357.       && TREE_INT_CST_HIGH (expr) == 0);
  1358. }
  1359.  
  1360. /* Return 1 if EXPR is an integer containing all 1's
  1361.    in as much precision as it contains.  */
  1362.  
  1363. int
  1364. integer_all_onesp (expr)
  1365.      tree expr;
  1366. {
  1367.   register int prec;
  1368.   register int uns;
  1369.  
  1370.   STRIP_NOPS (expr);
  1371.  
  1372.   if (TREE_CODE (expr) != INTEGER_CST)
  1373.     return 0;
  1374.  
  1375.   uns = TREE_UNSIGNED (TREE_TYPE (expr));
  1376.   if (!uns)
  1377.     return TREE_INT_CST_LOW (expr) == -1 && TREE_INT_CST_HIGH (expr) == -1;
  1378.  
  1379.   prec = TYPE_PRECISION (TREE_TYPE (expr));
  1380.   if (prec >= HOST_BITS_PER_WIDE_INT)
  1381.     {
  1382.       int high_value, shift_amount;
  1383.  
  1384.       shift_amount = prec - HOST_BITS_PER_WIDE_INT;
  1385.  
  1386.       if (shift_amount > HOST_BITS_PER_WIDE_INT)
  1387.     /* Can not handle precisions greater than twice the host int size.  */
  1388.     abort ();
  1389.       else if (shift_amount == HOST_BITS_PER_WIDE_INT)
  1390.     /* Shifting by the host word size is undefined according to the ANSI
  1391.        standard, so we must handle this as a special case.  */
  1392.     high_value = -1;
  1393.       else
  1394.     high_value = ((HOST_WIDE_INT) 1 << shift_amount) - 1;
  1395.  
  1396.       return TREE_INT_CST_LOW (expr) == -1
  1397.     && TREE_INT_CST_HIGH (expr) == high_value;
  1398.     }
  1399.   else
  1400.     return TREE_INT_CST_LOW (expr) == ((HOST_WIDE_INT) 1 << prec) - 1;
  1401. }
  1402.  
  1403. /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
  1404.    one bit on).  */
  1405.  
  1406. int
  1407. integer_pow2p (expr)
  1408.      tree expr;
  1409. {
  1410.   HOST_WIDE_INT high, low;
  1411.  
  1412.   STRIP_NOPS (expr);
  1413.  
  1414.   if (TREE_CODE (expr) != INTEGER_CST)
  1415.     return 0;
  1416.  
  1417.   high = TREE_INT_CST_HIGH (expr);
  1418.   low = TREE_INT_CST_LOW (expr);
  1419.  
  1420.   if (high == 0 && low == 0)
  1421.     return 0;
  1422.  
  1423.   return ((high == 0 && (low & (low - 1)) == 0)
  1424.       || (low == 0 && (high & (high - 1)) == 0));
  1425. }
  1426.  
  1427. /* Return 1 if EXPR is the real constant zero.  */
  1428.  
  1429. int
  1430. real_zerop (expr)
  1431.      tree expr;
  1432. {
  1433.   STRIP_NOPS (expr);
  1434.  
  1435.   return (TREE_CODE (expr) == REAL_CST
  1436.       && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst0));
  1437. }
  1438.  
  1439. /* Return 1 if EXPR is the real constant one.  */
  1440.  
  1441. int
  1442. real_onep (expr)
  1443.      tree expr;
  1444. {
  1445.   STRIP_NOPS (expr);
  1446.  
  1447.   return (TREE_CODE (expr) == REAL_CST
  1448.       && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst1));
  1449. }
  1450.  
  1451. /* Return 1 if EXPR is the real constant two.  */
  1452.  
  1453. int
  1454. real_twop (expr)
  1455.      tree expr;
  1456. {
  1457.   STRIP_NOPS (expr);
  1458.  
  1459.   return (TREE_CODE (expr) == REAL_CST
  1460.       && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst2));
  1461. }
  1462.  
  1463. /* Nonzero if EXP is a constant or a cast of a constant.  */
  1464.  
  1465. int
  1466. really_constant_p (exp)
  1467.      tree exp;
  1468. {
  1469.   /* This is not quite the same as STRIP_NOPS.  It does more.  */
  1470.   while (TREE_CODE (exp) == NOP_EXPR
  1471.      || TREE_CODE (exp) == CONVERT_EXPR
  1472.      || TREE_CODE (exp) == NON_LVALUE_EXPR)
  1473.     exp = TREE_OPERAND (exp, 0);
  1474.   return TREE_CONSTANT (exp);
  1475. }
  1476.  
  1477. /* Return first list element whose TREE_VALUE is ELEM.
  1478.    Return 0 if ELEM is not it LIST.  */
  1479.  
  1480. tree
  1481. value_member (elem, list)
  1482.      tree elem, list;
  1483. {
  1484.   while (list)
  1485.     {
  1486.       if (elem == TREE_VALUE (list))
  1487.     return list;
  1488.       list = TREE_CHAIN (list);
  1489.     }
  1490.   return NULL_TREE;
  1491. }
  1492.  
  1493. /* Return first list element whose TREE_PURPOSE is ELEM.
  1494.    Return 0 if ELEM is not it LIST.  */
  1495.  
  1496. tree
  1497. purpose_member (elem, list)
  1498.      tree elem, list;
  1499. {
  1500.   while (list)
  1501.     {
  1502.       if (elem == TREE_PURPOSE (list))
  1503.     return list;
  1504.       list = TREE_CHAIN (list);
  1505.     }
  1506.   return NULL_TREE;
  1507. }
  1508.  
  1509. /* Return first list element whose BINFO_TYPE is ELEM.
  1510.    Return 0 if ELEM is not it LIST.  */
  1511.  
  1512. tree
  1513. binfo_member (elem, list)
  1514.      tree elem, list;
  1515. {
  1516.   while (list)
  1517.     {
  1518.       if (elem == BINFO_TYPE (list))
  1519.     return list;
  1520.       list = TREE_CHAIN (list);
  1521.     }
  1522.   return NULL_TREE;
  1523. }
  1524.  
  1525. /* Return nonzero if ELEM is part of the chain CHAIN.  */
  1526.  
  1527. int
  1528. chain_member (elem, chain)
  1529.      tree elem, chain;
  1530. {
  1531.   while (chain)
  1532.     {
  1533.       if (elem == chain)
  1534.     return 1;
  1535.       chain = TREE_CHAIN (chain);
  1536.     }
  1537.  
  1538.   return 0;
  1539. }
  1540.  
  1541. /* Return the length of a chain of nodes chained through TREE_CHAIN.
  1542.    We expect a null pointer to mark the end of the chain.
  1543.    This is the Lisp primitive `length'.  */
  1544.  
  1545. int
  1546. list_length (t)
  1547.      tree t;
  1548. {
  1549.   register tree tail;
  1550.   register int len = 0;
  1551.  
  1552.   for (tail = t; tail; tail = TREE_CHAIN (tail))
  1553.     len++;
  1554.  
  1555.   return len;
  1556. }
  1557.  
  1558. /* Concatenate two chains of nodes (chained through TREE_CHAIN)
  1559.    by modifying the last node in chain 1 to point to chain 2.
  1560.    This is the Lisp primitive `nconc'.  */
  1561.  
  1562. tree
  1563. chainon (op1, op2)
  1564.      tree op1, op2;
  1565. {
  1566.   tree t;
  1567.  
  1568.   if (op1)
  1569.     {
  1570.       for (t = op1; TREE_CHAIN (t); t = TREE_CHAIN (t))
  1571.     if (t == op2) abort ();    /* Circularity being created */
  1572.       if (t == op2) abort ();    /* Circularity being created */
  1573.       TREE_CHAIN (t) = op2;
  1574.       return op1;
  1575.     }
  1576.   else return op2;
  1577. }
  1578.  
  1579. /* Return the last node in a chain of nodes (chained through TREE_CHAIN).  */
  1580.  
  1581. tree
  1582. tree_last (chain)
  1583.      register tree chain;
  1584. {
  1585.   register tree next;
  1586.   if (chain)
  1587.     while (next = TREE_CHAIN (chain))
  1588.       chain = next;
  1589.   return chain;
  1590. }
  1591.  
  1592. /* Reverse the order of elements in the chain T,
  1593.    and return the new head of the chain (old last element).  */
  1594.  
  1595. tree
  1596. nreverse (t)
  1597.      tree t;
  1598. {
  1599.   register tree prev = 0, decl, next;
  1600.   for (decl = t; decl; decl = next)
  1601.     {
  1602.       next = TREE_CHAIN (decl);
  1603.       TREE_CHAIN (decl) = prev;
  1604.       prev = decl;
  1605.     }
  1606.   return prev;
  1607. }
  1608.  
  1609. /* Given a chain CHAIN of tree nodes,
  1610.    construct and return a list of those nodes.  */
  1611.  
  1612. tree
  1613. listify (chain)
  1614.      tree chain;
  1615. {
  1616.   tree result = NULL_TREE;
  1617.   tree in_tail = chain;
  1618.   tree out_tail = NULL_TREE;
  1619.  
  1620.   while (in_tail)
  1621.     {
  1622.       tree next = tree_cons (NULL_TREE, in_tail, NULL_TREE);
  1623.       if (out_tail)
  1624.     TREE_CHAIN (out_tail) = next;
  1625.       else
  1626.     result = next;
  1627.       out_tail = next;
  1628.       in_tail = TREE_CHAIN (in_tail);
  1629.     }
  1630.  
  1631.   return result;
  1632. }
  1633.  
  1634. /* Return a newly created TREE_LIST node whose
  1635.    purpose and value fields are PARM and VALUE.  */
  1636.  
  1637. tree
  1638. build_tree_list (parm, value)
  1639.      tree parm, value;
  1640. {
  1641.   register tree t = make_node (TREE_LIST);
  1642.   TREE_PURPOSE (t) = parm;
  1643.   TREE_VALUE (t) = value;
  1644.   return t;
  1645. }
  1646.  
  1647. /* Similar, but build on the temp_decl_obstack.  */
  1648.  
  1649. tree
  1650. build_decl_list (parm, value)
  1651.      tree parm, value;
  1652. {
  1653.   register tree node;
  1654.   register struct obstack *ambient_obstack = current_obstack;
  1655.   current_obstack = &temp_decl_obstack;
  1656.   node = build_tree_list (parm, value);
  1657.   current_obstack = ambient_obstack;
  1658.   return node;
  1659. }
  1660.  
  1661. /* Return a newly created TREE_LIST node whose
  1662.    purpose and value fields are PARM and VALUE
  1663.    and whose TREE_CHAIN is CHAIN.  */
  1664.  
  1665. tree
  1666. tree_cons (purpose, value, chain)
  1667.      tree purpose, value, chain;
  1668. {
  1669. #if 0
  1670.   register tree node = make_node (TREE_LIST);
  1671. #else
  1672.   register int i;
  1673.   register tree node = (tree) obstack_alloc (current_obstack, sizeof (struct tree_list));
  1674. #ifdef GATHER_STATISTICS
  1675.   tree_node_counts[(int)x_kind]++;
  1676.   tree_node_sizes[(int)x_kind] += sizeof (struct tree_list);
  1677. #endif
  1678.  
  1679.   for (i = (sizeof (struct tree_common) / sizeof (int)) - 1; i >= 0; i--)
  1680.     ((int *) node)[i] = 0;
  1681.  
  1682.   TREE_SET_CODE (node, TREE_LIST);
  1683.   if (current_obstack == &permanent_obstack)
  1684.     TREE_PERMANENT (node) = 1;
  1685. #endif
  1686.  
  1687.   TREE_CHAIN (node) = chain;
  1688.   TREE_PURPOSE (node) = purpose;
  1689.   TREE_VALUE (node) = value;
  1690.   return node;
  1691. }
  1692.  
  1693. /* Similar, but build on the temp_decl_obstack.  */
  1694.  
  1695. tree
  1696. decl_tree_cons (purpose, value, chain)
  1697.      tree purpose, value, chain;
  1698. {
  1699.   register tree node;
  1700.   register struct obstack *ambient_obstack = current_obstack;
  1701.   current_obstack = &temp_decl_obstack;
  1702.   node = tree_cons (purpose, value, chain);
  1703.   current_obstack = ambient_obstack;
  1704.   return node;
  1705. }
  1706.  
  1707. /* Same as `tree_cons' but make a permanent object.  */
  1708.  
  1709. tree
  1710. perm_tree_cons (purpose, value, chain)
  1711.      tree purpose, value, chain;
  1712. {
  1713.   register tree node;
  1714.   register struct obstack *ambient_obstack = current_obstack;
  1715.   current_obstack = &permanent_obstack;
  1716.  
  1717.   node = tree_cons (purpose, value, chain);
  1718.   current_obstack = ambient_obstack;
  1719.   return node;
  1720. }
  1721.  
  1722. /* Same as `tree_cons', but make this node temporary, regardless.  */
  1723.  
  1724. tree
  1725. temp_tree_cons (purpose, value, chain)
  1726.      tree purpose, value, chain;
  1727. {
  1728.   register tree node;
  1729.   register struct obstack *ambient_obstack = current_obstack;
  1730.   current_obstack = &temporary_obstack;
  1731.  
  1732.   node = tree_cons (purpose, value, chain);
  1733.   current_obstack = ambient_obstack;
  1734.   return node;
  1735. }
  1736.  
  1737. /* Same as `tree_cons', but save this node if the function's RTL is saved.  */
  1738.  
  1739. tree
  1740. saveable_tree_cons (purpose, value, chain)
  1741.      tree purpose, value, chain;
  1742. {
  1743.   register tree node;
  1744.   register struct obstack *ambient_obstack = current_obstack;
  1745.   current_obstack = saveable_obstack;
  1746.  
  1747.   node = tree_cons (purpose, value, chain);
  1748.   current_obstack = ambient_obstack;
  1749.   return node;
  1750. }
  1751.  
  1752. /* Return the size nominally occupied by an object of type TYPE
  1753.    when it resides in memory.  The value is measured in units of bytes,
  1754.    and its data type is that normally used for type sizes
  1755.    (which is the first type created by make_signed_type or
  1756.    make_unsigned_type).  */
  1757.  
  1758. tree
  1759. size_in_bytes (type)
  1760.      tree type;
  1761. {
  1762.   tree t;
  1763.  
  1764.   if (type == error_mark_node)
  1765.     return integer_zero_node;
  1766.   type = TYPE_MAIN_VARIANT (type);
  1767.   if (TYPE_SIZE (type) == 0)
  1768.     {
  1769.       incomplete_type_error (NULL_TREE, type);
  1770.       return integer_zero_node;
  1771.     }
  1772.   t = size_binop (CEIL_DIV_EXPR, TYPE_SIZE (type),
  1773.           size_int (BITS_PER_UNIT));
  1774.   if (TREE_CODE (t) == INTEGER_CST)
  1775.     force_fit_type (t, 0);
  1776.   return t;
  1777. }
  1778.  
  1779. /* Return the size of TYPE (in bytes) as an integer,
  1780.    or return -1 if the size can vary.  */
  1781.  
  1782. int
  1783. int_size_in_bytes (type)
  1784.      tree type;
  1785. {
  1786.   unsigned int size;
  1787.   if (type == error_mark_node)
  1788.     return 0;
  1789.   type = TYPE_MAIN_VARIANT (type);
  1790.   if (TYPE_SIZE (type) == 0)
  1791.     return -1;
  1792.   if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
  1793.     return -1;
  1794.   if (TREE_INT_CST_HIGH (TYPE_SIZE (type)) != 0)
  1795.     {
  1796.       tree t = size_binop (CEIL_DIV_EXPR, TYPE_SIZE (type),
  1797.                size_int (BITS_PER_UNIT));
  1798.       return TREE_INT_CST_LOW (t);
  1799.     }
  1800.   size = TREE_INT_CST_LOW (TYPE_SIZE (type));
  1801.   return (size + BITS_PER_UNIT - 1) / BITS_PER_UNIT;
  1802. }
  1803.  
  1804. /* Return, as a tree node, the number of elements for TYPE (which is an
  1805.    ARRAY_TYPE) minus one. This counts only elements of the top array.  */
  1806.  
  1807. tree
  1808. array_type_nelts (type)
  1809.      tree type;
  1810. {
  1811.   tree index_type = TYPE_DOMAIN (type);
  1812.  
  1813.   return (integer_zerop (TYPE_MIN_VALUE (index_type))
  1814.       ? TYPE_MAX_VALUE (index_type)
  1815.       : fold (build (MINUS_EXPR, TREE_TYPE (TYPE_MAX_VALUE (index_type)),
  1816.              TYPE_MAX_VALUE (index_type),
  1817.              TYPE_MIN_VALUE (index_type))));
  1818. }
  1819.  
  1820. /* Return nonzero if arg is static -- a reference to an object in
  1821.    static storage.  This is not the same as the C meaning of `static'.  */
  1822.  
  1823. int
  1824. staticp (arg)
  1825.      tree arg;
  1826. {
  1827.   switch (TREE_CODE (arg))
  1828.     {
  1829.     case VAR_DECL:
  1830.     case FUNCTION_DECL:
  1831.       return TREE_STATIC (arg) || DECL_EXTERNAL (arg);
  1832.  
  1833.     case CONSTRUCTOR:
  1834.       return TREE_STATIC (arg);
  1835.  
  1836.     case STRING_CST:
  1837.       return 1;
  1838.  
  1839.     case COMPONENT_REF:
  1840.     case BIT_FIELD_REF:
  1841.       return staticp (TREE_OPERAND (arg, 0));
  1842.  
  1843.     case INDIRECT_REF:
  1844.       return TREE_CONSTANT (TREE_OPERAND (arg, 0));
  1845.  
  1846.     case ARRAY_REF:
  1847.       if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
  1848.       && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
  1849.     return staticp (TREE_OPERAND (arg, 0));
  1850.     }
  1851.  
  1852.   return 0;
  1853. }
  1854.  
  1855. /* Wrap a SAVE_EXPR around EXPR, if appropriate.
  1856.    Do this to any expression which may be used in more than one place,
  1857.    but must be evaluated only once.
  1858.  
  1859.    Normally, expand_expr would reevaluate the expression each time.
  1860.    Calling save_expr produces something that is evaluated and recorded
  1861.    the first time expand_expr is called on it.  Subsequent calls to
  1862.    expand_expr just reuse the recorded value.
  1863.  
  1864.    The call to expand_expr that generates code that actually computes
  1865.    the value is the first call *at compile time*.  Subsequent calls
  1866.    *at compile time* generate code to use the saved value.
  1867.    This produces correct result provided that *at run time* control
  1868.    always flows through the insns made by the first expand_expr
  1869.    before reaching the other places where the save_expr was evaluated.
  1870.    You, the caller of save_expr, must make sure this is so.
  1871.  
  1872.    Constants, and certain read-only nodes, are returned with no
  1873.    SAVE_EXPR because that is safe.  Expressions containing placeholders
  1874.    are not touched; see tree.def for an explanation of what these
  1875.    are used for.  */
  1876.  
  1877. tree
  1878. save_expr (expr)
  1879.      tree expr;
  1880. {
  1881.   register tree t = fold (expr);
  1882.  
  1883.   /* We don't care about whether this can be used as an lvalue in this
  1884.      context.  */
  1885.   while (TREE_CODE (t) == NON_LVALUE_EXPR)
  1886.     t = TREE_OPERAND (t, 0);
  1887.  
  1888.   /* If the tree evaluates to a constant, then we don't want to hide that
  1889.      fact (i.e. this allows further folding, and direct checks for constants).
  1890.      However, a read-only object that has side effects cannot be bypassed.
  1891.      Since it is no problem to reevaluate literals, we just return the 
  1892.      literal node. */
  1893.  
  1894.   if (TREE_CONSTANT (t) || (TREE_READONLY (t) && ! TREE_SIDE_EFFECTS (t))
  1895.       || TREE_CODE (t) == SAVE_EXPR)
  1896.     return t;
  1897.  
  1898.   /* If T contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
  1899.      it means that the size or offset of some field of an object depends on
  1900.      the value within another field.
  1901.  
  1902.      Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
  1903.      and some variable since it would then need to be both evaluated once and
  1904.      evaluated more than once.  Front-ends must assure this case cannot
  1905.      happen by surrounding any such subexpressions in their own SAVE_EXPR
  1906.      and forcing evaluation at the proper time.  */
  1907.   if (contains_placeholder_p (t))
  1908.     return t;
  1909.  
  1910.   t = build (SAVE_EXPR, TREE_TYPE (expr), t, current_function_decl, NULL_TREE);
  1911.  
  1912.   /* This expression might be placed ahead of a jump to ensure that the
  1913.      value was computed on both sides of the jump.  So make sure it isn't
  1914.      eliminated as dead.  */
  1915.   TREE_SIDE_EFFECTS (t) = 1;
  1916.   return t;
  1917. }
  1918.  
  1919. /* Return 1 if EXP contains a PLACEHOLDER_EXPR; i.e., if it represents a size
  1920.    or offset that depends on a field within a record.
  1921.  
  1922.    Note that we only allow such expressions within simple arithmetic
  1923.    or a COND_EXPR.  */
  1924.  
  1925. int
  1926. contains_placeholder_p (exp)
  1927.      tree exp;
  1928. {
  1929.   register enum tree_code code = TREE_CODE (exp);
  1930.   tree inner;
  1931.  
  1932.   /* If we have a WITH_RECORD_EXPR, it "cancels" any PLACEHOLDER_EXPR
  1933.      in it since it is supplying a value for it.  */
  1934.   if (code == WITH_RECORD_EXPR)
  1935.     return 0;
  1936.  
  1937.   switch (TREE_CODE_CLASS (code))
  1938.     {
  1939.     case 'r':
  1940.       for (inner = TREE_OPERAND (exp, 0);
  1941.        TREE_CODE_CLASS (TREE_CODE (inner)) == 'r';
  1942.        inner = TREE_OPERAND (inner, 0))
  1943.     ;
  1944.       return TREE_CODE (inner) == PLACEHOLDER_EXPR;
  1945.  
  1946.     case '1':
  1947.     case '2':  case '<':
  1948.     case 'e':
  1949.       switch (tree_code_length[(int) code])
  1950.     {
  1951.     case 1:
  1952.       return contains_placeholder_p (TREE_OPERAND (exp, 0));
  1953.     case 2:
  1954.       return (code != RTL_EXPR
  1955.           && code != CONSTRUCTOR
  1956.           && ! (code == SAVE_EXPR && SAVE_EXPR_RTL (exp) != 0)
  1957.           && code != WITH_RECORD_EXPR
  1958.           && (contains_placeholder_p (TREE_OPERAND (exp, 0))
  1959.               || contains_placeholder_p (TREE_OPERAND (exp, 1))));
  1960.     case 3:
  1961.       return (code == COND_EXPR
  1962.           && (contains_placeholder_p (TREE_OPERAND (exp, 0))
  1963.               || contains_placeholder_p (TREE_OPERAND (exp, 1))
  1964.               || contains_placeholder_p (TREE_OPERAND (exp, 2))));
  1965.     }
  1966.     }
  1967.  
  1968.   return 0;
  1969. }
  1970.  
  1971. /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
  1972.    return a tree with all occurrences of references to F in a
  1973.    PLACEHOLDER_EXPR replaced by R.   Note that we assume here that EXP
  1974.    contains only arithmetic expressions.  */
  1975.  
  1976. tree
  1977. substitute_in_expr (exp, f, r)
  1978.      tree exp;
  1979.      tree f;
  1980.      tree r;
  1981. {
  1982.   enum tree_code code = TREE_CODE (exp);
  1983.   tree inner;
  1984.  
  1985.   switch (TREE_CODE_CLASS (code))
  1986.     {
  1987.     case 'c':
  1988.     case 'd':
  1989.       return exp;
  1990.  
  1991.     case 'x':
  1992.       if (code == PLACEHOLDER_EXPR)
  1993.     return exp;
  1994.       break;
  1995.  
  1996.     case '1':
  1997.     case '2':
  1998.     case '<':
  1999.     case 'e':
  2000.       switch (tree_code_length[(int) code])
  2001.     {
  2002.     case 1:
  2003.       return fold (build1 (code, TREE_TYPE (exp),
  2004.                    substitute_in_expr (TREE_OPERAND (exp, 0),
  2005.                            f, r)));
  2006.  
  2007.     case 2:
  2008.       if (code == RTL_EXPR || code == CONSTRUCTOR)
  2009.         abort ();
  2010.  
  2011.       return fold (build (code, TREE_TYPE (exp),
  2012.                   substitute_in_expr (TREE_OPERAND (exp, 0), f, r),
  2013.                   substitute_in_expr (TREE_OPERAND (exp, 1),
  2014.                           f, r)));
  2015.  
  2016.     case 3:
  2017.       if (code != COND_EXPR)
  2018.         abort ();
  2019.  
  2020.       return fold (build (code, TREE_TYPE (exp),
  2021.                   substitute_in_expr (TREE_OPERAND (exp, 0), f, r),
  2022.                   substitute_in_expr (TREE_OPERAND (exp, 1), f, r),
  2023.                   substitute_in_expr (TREE_OPERAND (exp, 2),
  2024.                           f, r)));
  2025.     }
  2026.  
  2027.       break;
  2028.  
  2029.     case 'r':
  2030.       switch (code)
  2031.     {
  2032.     case COMPONENT_REF:
  2033.       /* If this expression is getting a value from a PLACEHOLDER_EXPR
  2034.          and it is the right field, replace it with R.  */
  2035.       for (inner = TREE_OPERAND (exp, 0);
  2036.            TREE_CODE_CLASS (TREE_CODE (inner)) == 'r';
  2037.            inner = TREE_OPERAND (inner, 0))
  2038.         ;
  2039.       if (TREE_CODE (inner) == PLACEHOLDER_EXPR
  2040.           && TREE_OPERAND (exp, 1) == f)
  2041.         return r;
  2042.  
  2043.       return fold (build (code, TREE_TYPE (exp),
  2044.                   substitute_in_expr (TREE_OPERAND (exp, 0), f, r),
  2045.                   TREE_OPERAND (exp, 1)));
  2046.     case BIT_FIELD_REF:
  2047.       return fold (build (code, TREE_TYPE (exp),
  2048.                   substitute_in_expr (TREE_OPERAND (exp, 0), f, r),
  2049.                   substitute_in_expr (TREE_OPERAND (exp, 1), f, r),
  2050.                   substitute_in_expr (TREE_OPERAND (exp, 2), f, r)));
  2051.     case INDIRECT_REF:
  2052.     case BUFFER_REF:
  2053.       return fold (build1 (code, TREE_TYPE (exp),
  2054.                    substitute_in_expr (TREE_OPERAND (exp, 0),
  2055.                          f, r)));
  2056.     case OFFSET_REF:
  2057.       return fold (build (code, TREE_TYPE (exp),
  2058.                   substitute_in_expr (TREE_OPERAND (exp, 0), f, r),
  2059.                   substitute_in_expr (TREE_OPERAND (exp, 1), f, r)));
  2060.     }
  2061.     }
  2062.  
  2063.   /* If it wasn't one of the cases we handle, give up.  */
  2064.  
  2065.   abort ();
  2066. }
  2067.  
  2068. /* Given a type T, a FIELD_DECL F, and a replacement value R,
  2069.    return a new type with all size expressions that contain F
  2070.    updated by replacing F with R.  */
  2071.  
  2072. tree
  2073. substitute_in_type (t, f, r)
  2074.      tree t, f, r;
  2075. {
  2076.   switch (TREE_CODE (t))
  2077.     {
  2078.     case POINTER_TYPE:
  2079.     case VOID_TYPE:
  2080.       return t;
  2081.     case INTEGER_TYPE:
  2082.     case ENUMERAL_TYPE:
  2083.     case BOOLEAN_TYPE:
  2084.     case CHAR_TYPE:
  2085.       if ((TREE_CODE (TYPE_MIN_VALUE (t)) != INTEGER_CST
  2086.        && contains_placeholder_p (TYPE_MIN_VALUE (t)))
  2087.       || (TREE_CODE (TYPE_MAX_VALUE (t)) != INTEGER_CST
  2088.           && contains_placeholder_p (TYPE_MAX_VALUE (t))))
  2089.     return build_range_type (t,
  2090.                  substitute_in_expr (TYPE_MIN_VALUE (t), f, r),
  2091.                  substitute_in_expr (TYPE_MAX_VALUE (t), f, r));
  2092.       return t;
  2093.  
  2094.     case REAL_TYPE:
  2095.       if ((TREE_CODE (TYPE_MIN_VALUE (t)) != INTEGER_CST
  2096.        && contains_placeholder_p (TYPE_MIN_VALUE (t)))
  2097.       || (TREE_CODE (TYPE_MAX_VALUE (t)) != INTEGER_CST
  2098.           && contains_placeholder_p (TYPE_MAX_VALUE (t))))
  2099.     {
  2100.       t = build_type_copy (t);
  2101.       TYPE_MIN_VALUE (t) = substitute_in_expr (TYPE_MIN_VALUE (t), f, r);
  2102.       TYPE_MAX_VALUE (t) = substitute_in_expr (TYPE_MAX_VALUE (t), f, r);
  2103.     }
  2104.       return t;
  2105.  
  2106.     case COMPLEX_TYPE:
  2107.       return build_complex_type (substitute_in_type (TREE_TYPE (t), f, r));
  2108.  
  2109.     case OFFSET_TYPE:
  2110.     case METHOD_TYPE:
  2111.     case REFERENCE_TYPE:
  2112.     case FILE_TYPE:
  2113.     case SET_TYPE:
  2114.     case STRING_TYPE:
  2115.     case FUNCTION_TYPE:
  2116.     case LANG_TYPE:
  2117.       /* Don't know how to do these yet.  */
  2118.       abort ();
  2119.  
  2120.     case ARRAY_TYPE:
  2121.       t = build_array_type (substitute_in_type (TREE_TYPE (t), f, r),
  2122.                 substitute_in_type (TYPE_DOMAIN (t), f, r));
  2123.       TYPE_SIZE (t) = 0;
  2124.       layout_type (t);
  2125.       return t;
  2126.  
  2127.     case RECORD_TYPE:
  2128.     case UNION_TYPE:
  2129.     case QUAL_UNION_TYPE:
  2130.       {
  2131.     tree new = copy_node (t);
  2132.     tree field;
  2133.     tree last_field = 0;
  2134.  
  2135.     /* Start out with no fields, make new fields, and chain them
  2136.        in.  */
  2137.  
  2138.     TYPE_FIELDS (new) = 0;
  2139.     TYPE_SIZE (new) = 0;
  2140.  
  2141.     for (field = TYPE_FIELDS (t); field;
  2142.          field = TREE_CHAIN (field))
  2143.       {
  2144.         tree new_field = copy_node (field);
  2145.  
  2146.         TREE_TYPE (new_field)
  2147.           = substitute_in_type (TREE_TYPE (new_field), f, r);
  2148.  
  2149.         /* If this is an anonymous field and the type of this field is
  2150.            a UNION_TYPE or RECORD_TYPE with no elements, ignore it.  If
  2151.            the type just has one element, treat that as the field. 
  2152.            But don't do this if we are processing a QUAL_UNION_TYPE.  */
  2153.         if (TREE_CODE (t) != QUAL_UNION_TYPE && DECL_NAME (new_field) == 0
  2154.         && (TREE_CODE (TREE_TYPE (new_field)) == UNION_TYPE
  2155.             || TREE_CODE (TREE_TYPE (new_field)) == RECORD_TYPE))
  2156.           {
  2157.         if (TYPE_FIELDS (TREE_TYPE (new_field)) == 0)
  2158.           continue;
  2159.  
  2160.         if (TREE_CHAIN (TYPE_FIELDS (TREE_TYPE (new_field))) == 0)
  2161.           new_field = TYPE_FIELDS (TREE_TYPE (new_field));
  2162.           }
  2163.  
  2164.         DECL_CONTEXT (new_field) = new;
  2165.         DECL_SIZE (new_field) = 0;
  2166.  
  2167.         if (TREE_CODE (t) == QUAL_UNION_TYPE)
  2168.           {
  2169.         /* Do the substitution inside the qualifier and if we find
  2170.            that this field will not be present, omit it.  */
  2171.         DECL_QUALIFIER (new_field)
  2172.           = substitute_in_expr (DECL_QUALIFIER (field), f, r);
  2173.         if (integer_zerop (DECL_QUALIFIER (new_field)))
  2174.           continue;
  2175.           }
  2176.  
  2177.         if (last_field == 0)
  2178.           TYPE_FIELDS (new) = new_field;
  2179.         else
  2180.           TREE_CHAIN (last_field) = new_field;
  2181.  
  2182.         last_field = new_field;
  2183.  
  2184.         /* If this is a qualified type and this field will always be
  2185.            present, we are done.  */
  2186.         if (TREE_CODE (t) == QUAL_UNION_TYPE
  2187.         && integer_onep (DECL_QUALIFIER (new_field)))
  2188.           break;
  2189.       }
  2190.  
  2191.     /* If this used to be a qualified union type, but we now know what
  2192.        field will be present, make this a normal union.  */
  2193.     if (TREE_CODE (new) == QUAL_UNION_TYPE
  2194.         && (TYPE_FIELDS (new) == 0
  2195.         || integer_onep (DECL_QUALIFIER (TYPE_FIELDS (new)))))
  2196.       TREE_SET_CODE (new, UNION_TYPE);
  2197.  
  2198.     layout_type (new);
  2199.     return new;
  2200.       }
  2201.     }
  2202. }
  2203.  
  2204. /* Stabilize a reference so that we can use it any number of times
  2205.    without causing its operands to be evaluated more than once.
  2206.    Returns the stabilized reference.  This works by means of save_expr,
  2207.    so see the caveats in the comments about save_expr.
  2208.  
  2209.    Also allows conversion expressions whose operands are references.
  2210.    Any other kind of expression is returned unchanged.  */
  2211.  
  2212. tree
  2213. stabilize_reference (ref)
  2214.      tree ref;
  2215. {
  2216.   register tree result;
  2217.   register enum tree_code code = TREE_CODE (ref);
  2218.  
  2219.   switch (code)
  2220.     {
  2221.     case VAR_DECL:
  2222.     case PARM_DECL:
  2223.     case RESULT_DECL:
  2224.       /* No action is needed in this case.  */
  2225.       return ref;
  2226.  
  2227.     case NOP_EXPR:
  2228.     case CONVERT_EXPR:
  2229.     case FLOAT_EXPR:
  2230.     case FIX_TRUNC_EXPR:
  2231.     case FIX_FLOOR_EXPR:
  2232.     case FIX_ROUND_EXPR:
  2233.     case FIX_CEIL_EXPR:
  2234.       result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
  2235.       break;
  2236.  
  2237.     case INDIRECT_REF:
  2238.       result = build_nt (INDIRECT_REF,
  2239.              stabilize_reference_1 (TREE_OPERAND (ref, 0)));
  2240.       break;
  2241.  
  2242.     case COMPONENT_REF:
  2243.       result = build_nt (COMPONENT_REF,
  2244.              stabilize_reference (TREE_OPERAND (ref, 0)),
  2245.              TREE_OPERAND (ref, 1));
  2246.       break;
  2247.  
  2248.     case BIT_FIELD_REF:
  2249.       result = build_nt (BIT_FIELD_REF,
  2250.              stabilize_reference (TREE_OPERAND (ref, 0)),
  2251.              stabilize_reference_1 (TREE_OPERAND (ref, 1)),
  2252.              stabilize_reference_1 (TREE_OPERAND (ref, 2)));
  2253.       break;
  2254.  
  2255.     case ARRAY_REF:
  2256.       result = build_nt (ARRAY_REF,
  2257.              stabilize_reference (TREE_OPERAND (ref, 0)),
  2258.              stabilize_reference_1 (TREE_OPERAND (ref, 1)));
  2259.       break;
  2260.  
  2261.       /* If arg isn't a kind of lvalue we recognize, make no change.
  2262.      Caller should recognize the error for an invalid lvalue.  */
  2263.     default:
  2264.       return ref;
  2265.  
  2266.     case ERROR_MARK:
  2267.       return error_mark_node;
  2268.     }
  2269.  
  2270.   TREE_TYPE (result) = TREE_TYPE (ref);
  2271.   TREE_READONLY (result) = TREE_READONLY (ref);
  2272.   TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
  2273.   TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
  2274.   TREE_RAISES (result) = TREE_RAISES (ref);
  2275.  
  2276.   return result;
  2277. }
  2278.  
  2279. /* Subroutine of stabilize_reference; this is called for subtrees of
  2280.    references.  Any expression with side-effects must be put in a SAVE_EXPR
  2281.    to ensure that it is only evaluated once.
  2282.  
  2283.    We don't put SAVE_EXPR nodes around everything, because assigning very
  2284.    simple expressions to temporaries causes us to miss good opportunities
  2285.    for optimizations.  Among other things, the opportunity to fold in the
  2286.    addition of a constant into an addressing mode often gets lost, e.g.
  2287.    "y[i+1] += x;".  In general, we take the approach that we should not make
  2288.    an assignment unless we are forced into it - i.e., that any non-side effect
  2289.    operator should be allowed, and that cse should take care of coalescing
  2290.    multiple utterances of the same expression should that prove fruitful.  */
  2291.  
  2292. static tree
  2293. stabilize_reference_1 (e)
  2294.      tree e;
  2295. {
  2296.   register tree result;
  2297.   register int length;
  2298.   register enum tree_code code = TREE_CODE (e);
  2299.  
  2300.   /* We cannot ignore const expressions because it might be a reference
  2301.      to a const array but whose index contains side-effects.  But we can
  2302.      ignore things that are actual constant or that already have been
  2303.      handled by this function.  */
  2304.  
  2305.   if (TREE_CONSTANT (e) || code == SAVE_EXPR)
  2306.     return e;
  2307.  
  2308.   switch (TREE_CODE_CLASS (code))
  2309.     {
  2310.     case 'x':
  2311.     case 't':
  2312.     case 'd':
  2313.     case 'b':
  2314.     case '<':
  2315.     case 's':
  2316.     case 'e':
  2317.     case 'r':
  2318.       /* If the expression has side-effects, then encase it in a SAVE_EXPR
  2319.      so that it will only be evaluated once.  */
  2320.       /* The reference (r) and comparison (<) classes could be handled as
  2321.      below, but it is generally faster to only evaluate them once.  */
  2322.       if (TREE_SIDE_EFFECTS (e))
  2323.     return save_expr (e);
  2324.       return e;
  2325.  
  2326.     case 'c':
  2327.       /* Constants need no processing.  In fact, we should never reach
  2328.      here.  */
  2329.       return e;
  2330.       
  2331.     case '2':
  2332.       /* Division is slow and tends to be compiled with jumps,
  2333.      especially the division by powers of 2 that is often
  2334.      found inside of an array reference.  So do it just once.  */
  2335.       if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
  2336.       || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
  2337.       || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
  2338.       || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
  2339.     return save_expr (e);
  2340.       /* Recursively stabilize each operand.  */
  2341.       result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
  2342.              stabilize_reference_1 (TREE_OPERAND (e, 1)));
  2343.       break;
  2344.  
  2345.     case '1':
  2346.       /* Recursively stabilize each operand.  */
  2347.       result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
  2348.       break;
  2349.     }
  2350.   
  2351.   TREE_TYPE (result) = TREE_TYPE (e);
  2352.   TREE_READONLY (result) = TREE_READONLY (e);
  2353.   TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
  2354.   TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
  2355.   TREE_RAISES (result) = TREE_RAISES (e);
  2356.  
  2357.   return result;
  2358. }
  2359.  
  2360. /* Low-level constructors for expressions.  */
  2361.  
  2362. /* Build an expression of code CODE, data type TYPE,
  2363.    and operands as specified by the arguments ARG1 and following arguments.
  2364.    Expressions and reference nodes can be created this way.
  2365.    Constants, decls, types and misc nodes cannot be.  */
  2366.  
  2367. tree
  2368. build (va_alist)
  2369.      va_dcl
  2370. {
  2371.   va_list p;
  2372.   enum tree_code code;
  2373.   register tree t;
  2374.   register int length;
  2375.   register int i;
  2376.  
  2377.   va_start (p);
  2378.  
  2379.   code = va_arg (p, enum tree_code);
  2380.   t = make_node (code);
  2381.   length = tree_code_length[(int) code];
  2382.   TREE_TYPE (t) = va_arg (p, tree);
  2383.  
  2384.   if (length == 2)
  2385.     {
  2386.       /* This is equivalent to the loop below, but faster.  */
  2387.       register tree arg0 = va_arg (p, tree);
  2388.       register tree arg1 = va_arg (p, tree);
  2389.       TREE_OPERAND (t, 0) = arg0;
  2390.       TREE_OPERAND (t, 1) = arg1;
  2391.       if ((arg0 && TREE_SIDE_EFFECTS (arg0))
  2392.       || (arg1 && TREE_SIDE_EFFECTS (arg1)))
  2393.     TREE_SIDE_EFFECTS (t) = 1;
  2394.       TREE_RAISES (t)
  2395.     = (arg0 && TREE_RAISES (arg0)) || (arg1 && TREE_RAISES (arg1));
  2396.     }
  2397.   else if (length == 1)
  2398.     {
  2399.       register tree arg0 = va_arg (p, tree);
  2400.  
  2401.       /* Call build1 for this!  */
  2402.       if (TREE_CODE_CLASS (code) != 's')
  2403.     abort ();
  2404.       TREE_OPERAND (t, 0) = arg0;
  2405.       if (arg0 && TREE_SIDE_EFFECTS (arg0))
  2406.     TREE_SIDE_EFFECTS (t) = 1;
  2407.       TREE_RAISES (t) = (arg0 && TREE_RAISES (arg0));
  2408.     }
  2409.   else
  2410.     {
  2411.       for (i = 0; i < length; i++)
  2412.     {
  2413.       register tree operand = va_arg (p, tree);
  2414.       TREE_OPERAND (t, i) = operand;
  2415.       if (operand)
  2416.         {
  2417.           if (TREE_SIDE_EFFECTS (operand))
  2418.         TREE_SIDE_EFFECTS (t) = 1;
  2419.           if (TREE_RAISES (operand))
  2420.         TREE_RAISES (t) = 1;
  2421.         }
  2422.     }
  2423.     }
  2424.   va_end (p);
  2425.   return t;
  2426. }
  2427.  
  2428. /* Same as above, but only builds for unary operators.
  2429.    Saves lions share of calls to `build'; cuts down use
  2430.    of varargs, which is expensive for RISC machines.  */
  2431. tree
  2432. build1 (code, type, node)
  2433.      enum tree_code code;
  2434.      tree type;
  2435.      tree node;
  2436. {
  2437.   register struct obstack *obstack = current_obstack;
  2438.   register int i, length;
  2439.   register tree_node_kind kind;
  2440.   register tree t;
  2441.  
  2442. #ifdef GATHER_STATISTICS
  2443.   if (TREE_CODE_CLASS (code) == 'r')
  2444.     kind = r_kind;
  2445.   else
  2446.     kind = e_kind;
  2447. #endif
  2448.  
  2449.   obstack = expression_obstack;
  2450.   length = sizeof (struct tree_exp);
  2451.  
  2452.   t = (tree) obstack_alloc (obstack, length);
  2453.  
  2454. #ifdef GATHER_STATISTICS
  2455.   tree_node_counts[(int)kind]++;
  2456.   tree_node_sizes[(int)kind] += length;
  2457. #endif
  2458.  
  2459.   for (i = (length / sizeof (int)) - 1; i >= 0; i--)
  2460.     ((int *) t)[i] = 0;
  2461.  
  2462.   TREE_TYPE (t) = type;
  2463.   TREE_SET_CODE (t, code);
  2464.  
  2465.   if (obstack == &permanent_obstack)
  2466.     TREE_PERMANENT (t) = 1;
  2467.  
  2468.   TREE_OPERAND (t, 0) = node;
  2469.   if (node)
  2470.     {
  2471.       if (TREE_SIDE_EFFECTS (node))
  2472.     TREE_SIDE_EFFECTS (t) = 1;
  2473.       if (TREE_RAISES (node))
  2474.     TREE_RAISES (t) = 1;
  2475.     }
  2476.  
  2477.   return t;
  2478. }
  2479.  
  2480. /* Similar except don't specify the TREE_TYPE
  2481.    and leave the TREE_SIDE_EFFECTS as 0.
  2482.    It is permissible for arguments to be null,
  2483.    or even garbage if their values do not matter.  */
  2484.  
  2485. tree
  2486. build_nt (va_alist)
  2487.      va_dcl
  2488. {
  2489.   va_list p;
  2490.   register enum tree_code code;
  2491.   register tree t;
  2492.   register int length;
  2493.   register int i;
  2494.  
  2495.   va_start (p);
  2496.  
  2497.   code = va_arg (p, enum tree_code);
  2498.   t = make_node (code);
  2499.   length = tree_code_length[(int) code];
  2500.  
  2501.   for (i = 0; i < length; i++)
  2502.     TREE_OPERAND (t, i) = va_arg (p, tree);
  2503.  
  2504.   va_end (p);
  2505.   return t;
  2506. }
  2507.  
  2508. /* Similar to `build_nt', except we build
  2509.    on the temp_decl_obstack, regardless.  */
  2510.  
  2511. tree
  2512. build_parse_node (va_alist)
  2513.      va_dcl
  2514. {
  2515.   register struct obstack *ambient_obstack = expression_obstack;
  2516.   va_list p;
  2517.   register enum tree_code code;
  2518.   register tree t;
  2519.   register int length;
  2520.   register int i;
  2521.  
  2522.   expression_obstack = &temp_decl_obstack;
  2523.  
  2524.   va_start (p);
  2525.  
  2526.   code = va_arg (p, enum tree_code);
  2527.   t = make_node (code);
  2528.   length = tree_code_length[(int) code];
  2529.  
  2530.   for (i = 0; i < length; i++)
  2531.     TREE_OPERAND (t, i) = va_arg (p, tree);
  2532.  
  2533.   va_end (p);
  2534.   expression_obstack = ambient_obstack;
  2535.   return t;
  2536. }
  2537.  
  2538. #if 0
  2539. /* Commented out because this wants to be done very
  2540.    differently.  See cp-lex.c.  */
  2541. tree
  2542. build_op_identifier (op1, op2)
  2543.      tree op1, op2;
  2544. {
  2545.   register tree t = make_node (OP_IDENTIFIER);
  2546.   TREE_PURPOSE (t) = op1;
  2547.   TREE_VALUE (t) = op2;
  2548.   return t;
  2549. }
  2550. #endif
  2551.  
  2552. /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
  2553.    We do NOT enter this node in any sort of symbol table.
  2554.  
  2555.    layout_decl is used to set up the decl's storage layout.
  2556.    Other slots are initialized to 0 or null pointers.  */
  2557.  
  2558. tree
  2559. build_decl (code, name, type)
  2560.      enum tree_code code;
  2561.      tree name, type;
  2562. {
  2563.   register tree t;
  2564.  
  2565.   t = make_node (code);
  2566.  
  2567. /*  if (type == error_mark_node)
  2568.     type = integer_type_node; */
  2569. /* That is not done, deliberately, so that having error_mark_node
  2570.    as the type can suppress useless errors in the use of this variable.  */
  2571.  
  2572.   DECL_NAME (t) = name;
  2573.   DECL_ASSEMBLER_NAME (t) = name;
  2574.   TREE_TYPE (t) = type;
  2575.  
  2576.   if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
  2577.     layout_decl (t, 0);
  2578.   else if (code == FUNCTION_DECL)
  2579.     DECL_MODE (t) = FUNCTION_MODE;
  2580.  
  2581.   return t;
  2582. }
  2583.  
  2584. /* BLOCK nodes are used to represent the structure of binding contours
  2585.    and declarations, once those contours have been exited and their contents
  2586.    compiled.  This information is used for outputting debugging info.  */
  2587.  
  2588. tree
  2589. build_block (vars, tags, subblocks, supercontext, chain)
  2590.      tree vars, tags, subblocks, supercontext, chain;
  2591. {
  2592.   register tree block = make_node (BLOCK);
  2593.   BLOCK_VARS (block) = vars;
  2594.   BLOCK_TYPE_TAGS (block) = tags;
  2595.   BLOCK_SUBBLOCKS (block) = subblocks;
  2596.   BLOCK_SUPERCONTEXT (block) = supercontext;
  2597.   BLOCK_CHAIN (block) = chain;
  2598.   return block;
  2599. }
  2600.  
  2601. /* Return a type like TYPE except that its TYPE_READONLY is CONSTP
  2602.    and its TYPE_VOLATILE is VOLATILEP.
  2603.  
  2604.    Such variant types already made are recorded so that duplicates
  2605.    are not made.
  2606.  
  2607.    A variant types should never be used as the type of an expression.
  2608.    Always copy the variant information into the TREE_READONLY
  2609.    and TREE_THIS_VOLATILE of the expression, and then give the expression
  2610.    as its type the "main variant", the variant whose TYPE_READONLY
  2611.    and TYPE_VOLATILE are zero.  Use TYPE_MAIN_VARIANT to find the
  2612.    main variant.  */
  2613.  
  2614. tree
  2615. build_type_variant (type, constp, volatilep)
  2616.      tree type;
  2617.      int constp, volatilep;
  2618. {
  2619.   register tree t, m = TYPE_MAIN_VARIANT (type);
  2620.   register struct obstack *ambient_obstack = current_obstack;
  2621.  
  2622.   /* Treat any nonzero argument as 1.  */
  2623.   constp = !!constp;
  2624.   volatilep = !!volatilep;
  2625.  
  2626.   /* If not generating auxiliary info, search the chain of variants to see
  2627.      if there is already one there just like the one we need to have.  If so,
  2628.      use that existing one.
  2629.  
  2630.      We don't do this in the case where we are generating aux info because
  2631.      in that case we want each typedef names to get it's own distinct type
  2632.      node, even if the type of this new typedef is the same as some other
  2633.      (existing) type.  */
  2634.  
  2635.   if (!flag_gen_aux_info)
  2636.     for (t = m; t; t = TYPE_NEXT_VARIANT (t))
  2637.       if (constp == TYPE_READONLY (t) && volatilep == TYPE_VOLATILE (t))
  2638.         return t;
  2639.  
  2640.   /* We need a new one.  */
  2641.  
  2642.   current_obstack = TYPE_OBSTACK (type);
  2643.   t = copy_node (type);
  2644.   current_obstack = ambient_obstack;
  2645.  
  2646.   TYPE_READONLY (t) = constp;
  2647.   TYPE_VOLATILE (t) = volatilep;
  2648.   TYPE_POINTER_TO (t) = 0;
  2649.   TYPE_REFERENCE_TO (t) = 0;
  2650.  
  2651.   /* Add this type to the chain of variants of TYPE.  */
  2652.   TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
  2653.   TYPE_NEXT_VARIANT (m) = t;
  2654.  
  2655.   return t;
  2656. }
  2657.  
  2658. /* Give TYPE a new main variant: NEW_MAIN.
  2659.    This is the right thing to do only when something else
  2660.    about TYPE is modified in place.  */
  2661.  
  2662. tree
  2663. change_main_variant (type, new_main)
  2664.      tree type, new_main;
  2665. {
  2666.   tree t;
  2667.   tree omain = TYPE_MAIN_VARIANT (type);
  2668.  
  2669.   /* Remove TYPE from the TYPE_NEXT_VARIANT chain of its main variant.  */
  2670.   if (TYPE_NEXT_VARIANT (omain) == type)
  2671.     TYPE_NEXT_VARIANT (omain) = TYPE_NEXT_VARIANT (type);
  2672.   else
  2673.     for (t = TYPE_NEXT_VARIANT (omain); t && TYPE_NEXT_VARIANT (t);
  2674.      t = TYPE_NEXT_VARIANT (t))
  2675.       if (TYPE_NEXT_VARIANT (t) == type)
  2676.     {
  2677.       TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (type);
  2678.       break;
  2679.     }
  2680.  
  2681.   TYPE_MAIN_VARIANT (type) = new_main;
  2682.   TYPE_NEXT_VARIANT (type) = TYPE_NEXT_VARIANT (new_main);
  2683.   TYPE_NEXT_VARIANT (new_main) = type;
  2684. }
  2685.  
  2686. /* Create a new variant of TYPE, equivalent but distinct.
  2687.    This is so the caller can modify it.  */
  2688.  
  2689. tree
  2690. build_type_copy (type)
  2691.      tree type;
  2692. {
  2693.   register tree t, m = TYPE_MAIN_VARIANT (type);
  2694.   register struct obstack *ambient_obstack = current_obstack;
  2695.  
  2696.   current_obstack = TYPE_OBSTACK (type);
  2697.   t = copy_node (type);
  2698.   current_obstack = ambient_obstack;
  2699.  
  2700.   TYPE_POINTER_TO (t) = 0;
  2701.   TYPE_REFERENCE_TO (t) = 0;
  2702.  
  2703.   /* Add this type to the chain of variants of TYPE.  */
  2704.   TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
  2705.   TYPE_NEXT_VARIANT (m) = t;
  2706.  
  2707.   return t;
  2708. }
  2709.  
  2710. /* Hashing of types so that we don't make duplicates.
  2711.    The entry point is `type_hash_canon'.  */
  2712.  
  2713. /* Each hash table slot is a bucket containing a chain
  2714.    of these structures.  */
  2715.  
  2716. struct type_hash
  2717. {
  2718.   struct type_hash *next;    /* Next structure in the bucket.  */
  2719.   int hashcode;            /* Hash code of this type.  */
  2720.   tree type;            /* The type recorded here.  */
  2721. };
  2722.  
  2723. /* Now here is the hash table.  When recording a type, it is added
  2724.    to the slot whose index is the hash code mod the table size.
  2725.    Note that the hash table is used for several kinds of types
  2726.    (function types, array types and array index range types, for now).
  2727.    While all these live in the same table, they are completely independent,
  2728.    and the hash code is computed differently for each of these.  */
  2729.  
  2730. #define TYPE_HASH_SIZE 59
  2731. struct type_hash *type_hash_table[TYPE_HASH_SIZE];
  2732.  
  2733. /* Here is how primitive or already-canonicalized types' hash
  2734.    codes are made.  */
  2735. #define TYPE_HASH(TYPE) ((HOST_WIDE_INT) (TYPE) & 0777777)
  2736.  
  2737. /* Compute a hash code for a list of types (chain of TREE_LIST nodes
  2738.    with types in the TREE_VALUE slots), by adding the hash codes
  2739.    of the individual types.  */
  2740.  
  2741. int
  2742. type_hash_list (list)
  2743.      tree list;
  2744. {
  2745.   register int hashcode;
  2746.   register tree tail;
  2747.   for (hashcode = 0, tail = list; tail; tail = TREE_CHAIN (tail))
  2748.     hashcode += TYPE_HASH (TREE_VALUE (tail));
  2749.   return hashcode;
  2750. }
  2751.  
  2752. /* Look in the type hash table for a type isomorphic to TYPE.
  2753.    If one is found, return it.  Otherwise return 0.  */
  2754.  
  2755. tree
  2756. type_hash_lookup (hashcode, type)
  2757.      int hashcode;
  2758.      tree type;
  2759. {
  2760.   register struct type_hash *h;
  2761.   for (h = type_hash_table[hashcode % TYPE_HASH_SIZE]; h; h = h->next)
  2762.     if (h->hashcode == hashcode
  2763.     && TREE_CODE (h->type) == TREE_CODE (type)
  2764.     && TREE_TYPE (h->type) == TREE_TYPE (type)
  2765.     && (TYPE_MAX_VALUE (h->type) == TYPE_MAX_VALUE (type)
  2766.         || tree_int_cst_equal (TYPE_MAX_VALUE (h->type),
  2767.                    TYPE_MAX_VALUE (type)))
  2768.     && (TYPE_MIN_VALUE (h->type) == TYPE_MIN_VALUE (type)
  2769.         || tree_int_cst_equal (TYPE_MIN_VALUE (h->type),
  2770.                    TYPE_MIN_VALUE (type)))
  2771.     && (TYPE_DOMAIN (h->type) == TYPE_DOMAIN (type)
  2772.         || (TYPE_DOMAIN (h->type)
  2773.         && TREE_CODE (TYPE_DOMAIN (h->type)) == TREE_LIST
  2774.         && TYPE_DOMAIN (type)
  2775.         && TREE_CODE (TYPE_DOMAIN (type)) == TREE_LIST
  2776.         && type_list_equal (TYPE_DOMAIN (h->type), TYPE_DOMAIN (type)))))
  2777.       return h->type;
  2778.   return 0;
  2779. }
  2780.  
  2781. /* Add an entry to the type-hash-table
  2782.    for a type TYPE whose hash code is HASHCODE.  */
  2783.  
  2784. void
  2785. type_hash_add (hashcode, type)
  2786.      int hashcode;
  2787.      tree type;
  2788. {
  2789.   register struct type_hash *h;
  2790.  
  2791.   h = (struct type_hash *) oballoc (sizeof (struct type_hash));
  2792.   h->hashcode = hashcode;
  2793.   h->type = type;
  2794.   h->next = type_hash_table[hashcode % TYPE_HASH_SIZE];
  2795.   type_hash_table[hashcode % TYPE_HASH_SIZE] = h;
  2796. }
  2797.  
  2798. /* Given TYPE, and HASHCODE its hash code, return the canonical
  2799.    object for an identical type if one already exists.
  2800.    Otherwise, return TYPE, and record it as the canonical object
  2801.    if it is a permanent object.
  2802.  
  2803.    To use this function, first create a type of the sort you want.
  2804.    Then compute its hash code from the fields of the type that
  2805.    make it different from other similar types.
  2806.    Then call this function and use the value.
  2807.    This function frees the type you pass in if it is a duplicate.  */
  2808.  
  2809. /* Set to 1 to debug without canonicalization.  Never set by program.  */
  2810. int debug_no_type_hash = 0;
  2811.  
  2812. tree
  2813. type_hash_canon (hashcode, type)
  2814.      int hashcode;
  2815.      tree type;
  2816. {
  2817.   tree t1;
  2818.  
  2819.   if (debug_no_type_hash)
  2820.     return type;
  2821.  
  2822.   t1 = type_hash_lookup (hashcode, type);
  2823.   if (t1 != 0)
  2824.     {
  2825.       struct obstack *o
  2826.     = TREE_PERMANENT (type) ? &permanent_obstack : saveable_obstack;
  2827.       obstack_free (o, type);
  2828. #ifdef GATHER_STATISTICS
  2829.       tree_node_counts[(int)t_kind]--;
  2830.       tree_node_sizes[(int)t_kind] -= sizeof (struct tree_type);
  2831. #endif
  2832.       return t1;
  2833.     }
  2834.  
  2835.   /* If this is a new type, record it for later reuse.  */
  2836.   if (current_obstack == &permanent_obstack)
  2837.     type_hash_add (hashcode, type);
  2838.  
  2839.   return type;
  2840. }
  2841.  
  2842. /* Given two lists of types
  2843.    (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
  2844.    return 1 if the lists contain the same types in the same order.
  2845.    Also, the TREE_PURPOSEs must match.  */
  2846.  
  2847. int
  2848. type_list_equal (l1, l2)
  2849.      tree l1, l2;
  2850. {
  2851.   register tree t1, t2;
  2852.   for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
  2853.     {
  2854.       if (TREE_VALUE (t1) != TREE_VALUE (t2))
  2855.     return 0;
  2856.       if (TREE_PURPOSE (t1) != TREE_PURPOSE (t2))
  2857.     {
  2858.       int cmp = simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2));
  2859.       if (cmp < 0)
  2860.         abort ();
  2861.       if (cmp == 0)
  2862.         return 0;
  2863.     }
  2864.     }
  2865.  
  2866.   return t1 == t2;
  2867. }
  2868.  
  2869. /* Nonzero if integer constants T1 and T2
  2870.    represent the same constant value.  */
  2871.  
  2872. int
  2873. tree_int_cst_equal (t1, t2)
  2874.      tree t1, t2;
  2875. {
  2876.   if (t1 == t2)
  2877.     return 1;
  2878.   if (t1 == 0 || t2 == 0)
  2879.     return 0;
  2880.   if (TREE_CODE (t1) == INTEGER_CST
  2881.       && TREE_CODE (t2) == INTEGER_CST
  2882.       && TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
  2883.       && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2))
  2884.     return 1;
  2885.   return 0;
  2886. }
  2887.  
  2888. /* Nonzero if integer constants T1 and T2 represent values that satisfy <.
  2889.    The precise way of comparison depends on their data type.  */
  2890.  
  2891. int
  2892. tree_int_cst_lt (t1, t2)
  2893.      tree t1, t2;
  2894. {
  2895.   if (t1 == t2)
  2896.     return 0;
  2897.  
  2898.   if (!TREE_UNSIGNED (TREE_TYPE (t1)))
  2899.     return INT_CST_LT (t1, t2);
  2900.   return INT_CST_LT_UNSIGNED (t1, t2);
  2901. }
  2902.  
  2903. /* Compare two constructor-element-type constants.  */
  2904. int
  2905. simple_cst_list_equal (l1, l2)
  2906.      tree l1, l2;
  2907. {
  2908.   while (l1 != NULL_TREE && l2 != NULL_TREE)
  2909.     {
  2910.       int cmp = simple_cst_equal (TREE_VALUE (l1), TREE_VALUE (l2));
  2911.       if (cmp < 0)
  2912.     abort ();
  2913.       if (cmp == 0)
  2914.     return 0;
  2915.       l1 = TREE_CHAIN (l1);
  2916.       l2 = TREE_CHAIN (l2);
  2917.     }
  2918.   return (l1 == l2);
  2919. }
  2920.  
  2921. /* Return truthvalue of whether T1 is the same tree structure as T2.
  2922.    Return 1 if they are the same.
  2923.    Return 0 if they are understandably different.
  2924.    Return -1 if either contains tree structure not understood by
  2925.    this function.  */
  2926.  
  2927. int
  2928. simple_cst_equal (t1, t2)
  2929.      tree t1, t2;
  2930. {
  2931.   register enum tree_code code1, code2;
  2932.   int cmp;
  2933.  
  2934.   if (t1 == t2)
  2935.     return 1;
  2936.   if (t1 == 0 || t2 == 0)
  2937.     return 0;
  2938.  
  2939.   code1 = TREE_CODE (t1);
  2940.   code2 = TREE_CODE (t2);
  2941.  
  2942.   if (code1 == NOP_EXPR || code1 == CONVERT_EXPR || code1 == NON_LVALUE_EXPR)
  2943.     if (code2 == NOP_EXPR || code2 == CONVERT_EXPR || code2 == NON_LVALUE_EXPR)
  2944.       return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
  2945.     else
  2946.       return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
  2947.   else if (code2 == NOP_EXPR || code2 == CONVERT_EXPR
  2948.        || code2 == NON_LVALUE_EXPR)
  2949.     return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
  2950.  
  2951.   if (code1 != code2)
  2952.     return 0;
  2953.  
  2954.   switch (code1)
  2955.     {
  2956.     case INTEGER_CST:
  2957.       return TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
  2958.     && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2);
  2959.  
  2960.     case REAL_CST:
  2961.       return REAL_VALUES_EQUAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
  2962.  
  2963.     case STRING_CST:
  2964.       return TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
  2965.     && !bcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
  2966.           TREE_STRING_LENGTH (t1));
  2967.  
  2968.     case CONSTRUCTOR:
  2969.       abort ();
  2970.  
  2971.     case SAVE_EXPR:
  2972.       return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
  2973.  
  2974.     case CALL_EXPR:
  2975.       cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
  2976.       if (cmp <= 0)
  2977.     return cmp;
  2978.       return simple_cst_list_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
  2979.  
  2980.     case TARGET_EXPR:
  2981.       /* Special case: if either target is an unallocated VAR_DECL,
  2982.      it means that it's going to be unified with whatever the
  2983.      TARGET_EXPR is really supposed to initialize, so treat it
  2984.      as being equivalent to anything.  */
  2985.       if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
  2986.        && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
  2987.        && DECL_RTL (TREE_OPERAND (t1, 0)) == 0)
  2988.       || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
  2989.           && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
  2990.           && DECL_RTL (TREE_OPERAND (t2, 0)) == 0))
  2991.     cmp = 1;
  2992.       else
  2993.     cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
  2994.       if (cmp <= 0)
  2995.     return cmp;
  2996.       return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
  2997.  
  2998.     case WITH_CLEANUP_EXPR:
  2999.       cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
  3000.       if (cmp <= 0)
  3001.     return cmp;
  3002.       return simple_cst_equal (TREE_OPERAND (t1, 2), TREE_OPERAND (t1, 2));
  3003.  
  3004.     case COMPONENT_REF:
  3005.       if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
  3006.     return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
  3007.       return 0;
  3008.  
  3009.     case VAR_DECL:
  3010.     case PARM_DECL:
  3011.     case CONST_DECL:
  3012.     case FUNCTION_DECL:
  3013.       return 0;
  3014.     }
  3015.  
  3016.   /* This general rule works for most tree codes.
  3017.      All exceptions should be handled above.  */
  3018.  
  3019.   switch (TREE_CODE_CLASS (code1))
  3020.     {
  3021.       int i;
  3022.     case '1':
  3023.     case '2':
  3024.     case '<':
  3025.     case 'e':
  3026.     case 'r':
  3027.     case 's':
  3028.       cmp = 1;
  3029.       for (i=0; i<tree_code_length[(int) code1]; ++i)
  3030.     {
  3031.       cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
  3032.       if (cmp <= 0)
  3033.         return cmp;
  3034.     }
  3035.       return cmp;
  3036.     }
  3037.  
  3038.   return -1;
  3039. }
  3040.  
  3041. /* Constructors for pointer, array and function types.
  3042.    (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
  3043.    constructed by language-dependent code, not here.)  */
  3044.  
  3045. /* Construct, lay out and return the type of pointers to TO_TYPE.
  3046.    If such a type has already been constructed, reuse it.  */
  3047.  
  3048. tree
  3049. build_pointer_type (to_type)
  3050.      tree to_type;
  3051. {
  3052.   register tree t = TYPE_POINTER_TO (to_type);
  3053.  
  3054.   /* First, if we already have a type for pointers to TO_TYPE, use it.  */
  3055.  
  3056.   if (t)
  3057.     return t;
  3058.  
  3059.   /* We need a new one.  Put this in the same obstack as TO_TYPE.   */
  3060.   push_obstacks (TYPE_OBSTACK (to_type), TYPE_OBSTACK (to_type));
  3061.   t = make_node (POINTER_TYPE);
  3062.   pop_obstacks ();
  3063.  
  3064.   TREE_TYPE (t) = to_type;
  3065.  
  3066.   /* Record this type as the pointer to TO_TYPE.  */
  3067.   TYPE_POINTER_TO (to_type) = t;
  3068.  
  3069.   /* Lay out the type.  This function has many callers that are concerned
  3070.      with expression-construction, and this simplifies them all.
  3071.      Also, it guarantees the TYPE_SIZE is in the same obstack as the type.  */
  3072.   layout_type (t);
  3073.  
  3074.   return t;
  3075. }
  3076.  
  3077. /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
  3078.    MAXVAL should be the maximum value in the domain
  3079.    (one less than the length of the array).  */
  3080.  
  3081. tree
  3082. build_index_type (maxval)
  3083.      tree maxval;
  3084. {
  3085.   register tree itype = make_node (INTEGER_TYPE);
  3086.   TYPE_PRECISION (itype) = TYPE_PRECISION (sizetype);
  3087.   TYPE_MIN_VALUE (itype) = build_int_2 (0, 0);
  3088.   TREE_TYPE (TYPE_MIN_VALUE (itype)) = sizetype;
  3089.   TYPE_MAX_VALUE (itype) = convert (sizetype, maxval);
  3090.   TYPE_MODE (itype) = TYPE_MODE (sizetype);
  3091.   TYPE_SIZE (itype) = TYPE_SIZE (sizetype);
  3092.   TYPE_ALIGN (itype) = TYPE_ALIGN (sizetype);
  3093.   if (TREE_CODE (maxval) == INTEGER_CST)
  3094.     {
  3095.       int maxint = (int) TREE_INT_CST_LOW (maxval);
  3096.       /* If the domain should be empty, make sure the maxval
  3097.      remains -1 and is not spoiled by truncation.  */
  3098.       if (INT_CST_LT (maxval, integer_zero_node))
  3099.     {
  3100.       TYPE_MAX_VALUE (itype) = build_int_2 (-1, -1);
  3101.       TREE_TYPE (TYPE_MAX_VALUE (itype)) = sizetype;
  3102.     }
  3103.       return type_hash_canon (maxint < 0 ? ~maxint : maxint, itype);
  3104.     }
  3105.   else
  3106.     return itype;
  3107. }
  3108.  
  3109. /* Create a range of some discrete type TYPE (an INTEGER_TYPE,
  3110.    ENUMERAL_TYPE, BOOLEAN_TYPE, or CHAR_TYPE), with
  3111.    low bound LOWVAL and high bound HIGHVAL.
  3112.    if TYPE==NULL_TREE, sizetype is used. */
  3113.  
  3114. tree
  3115. build_range_type (type, lowval, highval)
  3116.      tree type, lowval, highval;
  3117. {
  3118.   register tree itype = make_node (INTEGER_TYPE);
  3119.   TREE_TYPE (itype) = type;
  3120.   if (type == NULL_TREE)
  3121.     type = sizetype;
  3122.   TYPE_PRECISION (itype) = TYPE_PRECISION (type);
  3123.   TYPE_MIN_VALUE (itype) = convert (type, lowval);
  3124.   TYPE_MAX_VALUE (itype) = convert (type, highval);
  3125.   TYPE_MODE (itype) = TYPE_MODE (type);
  3126.   TYPE_SIZE (itype) = TYPE_SIZE (type);
  3127.   TYPE_ALIGN (itype) = TYPE_ALIGN (type);
  3128.   if ((TREE_CODE (lowval) == INTEGER_CST)
  3129.       && (TREE_CODE (highval) == INTEGER_CST))
  3130.     {
  3131.       HOST_WIDE_INT highint = TREE_INT_CST_LOW (highval);
  3132.       HOST_WIDE_INT lowint = TREE_INT_CST_LOW (lowval);
  3133.       int maxint = (int) (highint - lowint);
  3134.       return type_hash_canon (maxint < 0 ? ~maxint : maxint, itype);
  3135.     }
  3136.   else
  3137.     return itype;
  3138. }
  3139.  
  3140. /* Just like build_index_type, but takes lowval and highval instead
  3141.    of just highval (maxval). */
  3142.  
  3143. tree
  3144. build_index_2_type (lowval,highval)
  3145.      tree lowval, highval;
  3146. {
  3147.   return build_range_type (NULL_TREE, lowval, highval);
  3148. }
  3149.  
  3150. /* Return nonzero iff ITYPE1 and ITYPE2 are equal (in the LISP sense).
  3151.    Needed because when index types are not hashed, equal index types
  3152.    built at different times appear distinct, even though structurally,
  3153.    they are not.  */
  3154.  
  3155. int
  3156. index_type_equal (itype1, itype2)
  3157.      tree itype1, itype2;
  3158. {
  3159.   if (TREE_CODE (itype1) != TREE_CODE (itype2))
  3160.     return 0;
  3161.   if (TREE_CODE (itype1) == INTEGER_TYPE)
  3162.     {
  3163.       if (TYPE_PRECISION (itype1) != TYPE_PRECISION (itype2)
  3164.       || TYPE_MODE (itype1) != TYPE_MODE (itype2)
  3165.       || ! simple_cst_equal (TYPE_SIZE (itype1), TYPE_SIZE (itype2))
  3166.       || TYPE_ALIGN (itype1) != TYPE_ALIGN (itype2))
  3167.     return 0;
  3168.       if (simple_cst_equal (TYPE_MIN_VALUE (itype1), TYPE_MIN_VALUE (itype2))
  3169.       && simple_cst_equal (TYPE_MAX_VALUE (itype1), TYPE_MAX_VALUE (itype2)))
  3170.     return 1;
  3171.     }
  3172.   return 0;
  3173. }
  3174.  
  3175. /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
  3176.    and number of elements specified by the range of values of INDEX_TYPE.
  3177.    If such a type has already been constructed, reuse it.  */
  3178.  
  3179. tree
  3180. build_array_type (elt_type, index_type)
  3181.      tree elt_type, index_type;
  3182. {
  3183.   register tree t;
  3184.   int hashcode;
  3185.  
  3186.   if (TREE_CODE (elt_type) == FUNCTION_TYPE)
  3187.     {
  3188.       error ("arrays of functions are not meaningful");
  3189.       elt_type = integer_type_node;
  3190.     }
  3191.  
  3192.   /* Make sure TYPE_POINTER_TO (elt_type) is filled in.  */
  3193.   build_pointer_type (elt_type);
  3194.  
  3195.   /* Allocate the array after the pointer type,
  3196.      in case we free it in type_hash_canon.  */
  3197.   t = make_node (ARRAY_TYPE);
  3198.   TREE_TYPE (t) = elt_type;
  3199.   TYPE_DOMAIN (t) = index_type;
  3200.  
  3201.   if (index_type == 0)
  3202.     {
  3203.       return t;
  3204.     }
  3205.  
  3206.   hashcode = TYPE_HASH (elt_type) + TYPE_HASH (index_type);
  3207.   t = type_hash_canon (hashcode, t);
  3208.  
  3209. #if 0 /* This led to crashes, because it could put a temporary node
  3210.      on the TYPE_NEXT_VARIANT chain of a permanent one.  */
  3211.   /* The main variant of an array type should always
  3212.      be an array whose element type is the main variant.  */
  3213.   if (elt_type != TYPE_MAIN_VARIANT (elt_type))
  3214.     change_main_variant (t, build_array_type (TYPE_MAIN_VARIANT (elt_type),
  3215.                           index_type));
  3216. #endif
  3217.  
  3218.   if (TYPE_SIZE (t) == 0)
  3219.     layout_type (t);
  3220.   return t;
  3221. }
  3222.  
  3223. /* Construct, lay out and return
  3224.    the type of functions returning type VALUE_TYPE
  3225.    given arguments of types ARG_TYPES.
  3226.    ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
  3227.    are data type nodes for the arguments of the function.
  3228.    If such a type has already been constructed, reuse it.  */
  3229.  
  3230. tree
  3231. build_function_type (value_type, arg_types)
  3232.      tree value_type, arg_types;
  3233. {
  3234.   register tree t;
  3235.   int hashcode;
  3236.  
  3237.   if (TREE_CODE (value_type) == FUNCTION_TYPE)
  3238.     {
  3239.       error ("function return type cannot be function");
  3240.       value_type = integer_type_node;
  3241.     }
  3242.  
  3243.   /* Make a node of the sort we want.  */
  3244.   t = make_node (FUNCTION_TYPE);
  3245.   TREE_TYPE (t) = value_type;
  3246.   TYPE_ARG_TYPES (t) = arg_types;
  3247.  
  3248.   /* If we already have such a type, use the old one and free this one.  */
  3249.   hashcode = TYPE_HASH (value_type) + type_hash_list (arg_types);
  3250.   t = type_hash_canon (hashcode, t);
  3251.  
  3252.   if (TYPE_SIZE (t) == 0)
  3253.     layout_type (t);
  3254.   return t;
  3255. }
  3256.  
  3257. /* Build the node for the type of references-to-TO_TYPE.  */
  3258.  
  3259. tree
  3260. build_reference_type (to_type)
  3261.      tree to_type;
  3262. {
  3263.   register tree t = TYPE_REFERENCE_TO (to_type);
  3264.   register struct obstack *ambient_obstack = current_obstack;
  3265.   register struct obstack *ambient_saveable_obstack = saveable_obstack;
  3266.  
  3267.   /* First, if we already have a type for pointers to TO_TYPE, use it.  */
  3268.  
  3269.   if (t)
  3270.     return t;
  3271.  
  3272.   /* We need a new one.  If TO_TYPE is permanent, make this permanent too.  */
  3273.   if (TREE_PERMANENT (to_type))
  3274.     {
  3275.       current_obstack = &permanent_obstack;
  3276.       saveable_obstack = &permanent_obstack;
  3277.     }
  3278.  
  3279.   t = make_node (REFERENCE_TYPE);
  3280.   TREE_TYPE (t) = to_type;
  3281.  
  3282.   /* Record this type as the pointer to TO_TYPE.  */
  3283.   TYPE_REFERENCE_TO (to_type) = t;
  3284.  
  3285.   layout_type (t);
  3286.  
  3287.   current_obstack = ambient_obstack;
  3288.   saveable_obstack = ambient_saveable_obstack;
  3289.   return t;
  3290. }
  3291.  
  3292. /* Construct, lay out and return the type of methods belonging to class
  3293.    BASETYPE and whose arguments and values are described by TYPE.
  3294.    If that type exists already, reuse it.
  3295.    TYPE must be a FUNCTION_TYPE node.  */
  3296.  
  3297. tree
  3298. build_method_type (basetype, type)
  3299.      tree basetype, type;
  3300. {
  3301.   register tree t;
  3302.   int hashcode;
  3303.  
  3304.   /* Make a node of the sort we want.  */
  3305.   t = make_node (METHOD_TYPE);
  3306.  
  3307.   if (TREE_CODE (type) != FUNCTION_TYPE)
  3308.     abort ();
  3309.  
  3310.   TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
  3311.   TREE_TYPE (t) = TREE_TYPE (type);
  3312.  
  3313.   /* The actual arglist for this function includes a "hidden" argument
  3314.      which is "this".  Put it into the list of argument types.  */
  3315.  
  3316.   TYPE_ARG_TYPES (t)
  3317.     = tree_cons (NULL_TREE,
  3318.          build_pointer_type (basetype), TYPE_ARG_TYPES (type));
  3319.  
  3320.   /* If we already have such a type, use the old one and free this one.  */
  3321.   hashcode = TYPE_HASH (basetype) + TYPE_HASH (type);
  3322.   t = type_hash_canon (hashcode, t);
  3323.  
  3324.   if (TYPE_SIZE (t) == 0)
  3325.     layout_type (t);
  3326.  
  3327.   return t;
  3328. }
  3329.  
  3330. /* Construct, lay out and return the type of offsets to a value
  3331.    of type TYPE, within an object of type BASETYPE.
  3332.    If a suitable offset type exists already, reuse it.  */
  3333.  
  3334. tree
  3335. build_offset_type (basetype, type)
  3336.      tree basetype, type;
  3337. {
  3338.   register tree t;
  3339.   int hashcode;
  3340.  
  3341.   /* Make a node of the sort we want.  */
  3342.   t = make_node (OFFSET_TYPE);
  3343.  
  3344.   TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
  3345.   TREE_TYPE (t) = type;
  3346.  
  3347.   /* If we already have such a type, use the old one and free this one.  */
  3348.   hashcode = TYPE_HASH (basetype) + TYPE_HASH (type);
  3349.   t = type_hash_canon (hashcode, t);
  3350.  
  3351.   if (TYPE_SIZE (t) == 0)
  3352.     layout_type (t);
  3353.  
  3354.   return t;
  3355. }
  3356.  
  3357. /* Create a complex type whose components are COMPONENT_TYPE.  */
  3358.  
  3359. tree
  3360. build_complex_type (component_type)
  3361.      tree component_type;
  3362. {
  3363.   register tree t;
  3364.   int hashcode;
  3365.  
  3366.   /* Make a node of the sort we want.  */
  3367.   t = make_node (COMPLEX_TYPE);
  3368.  
  3369.   TREE_TYPE (t) = TYPE_MAIN_VARIANT (component_type);
  3370.   TYPE_VOLATILE (t) = TYPE_VOLATILE (component_type);
  3371.   TYPE_READONLY (t) = TYPE_READONLY (component_type);
  3372.  
  3373.   /* If we already have such a type, use the old one and free this one.  */
  3374.   hashcode = TYPE_HASH (component_type);
  3375.   t = type_hash_canon (hashcode, t);
  3376.  
  3377.   if (TYPE_SIZE (t) == 0)
  3378.     layout_type (t);
  3379.  
  3380.   return t;
  3381. }
  3382.  
  3383. /* Return OP, stripped of any conversions to wider types as much as is safe.
  3384.    Converting the value back to OP's type makes a value equivalent to OP.
  3385.  
  3386.    If FOR_TYPE is nonzero, we return a value which, if converted to
  3387.    type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
  3388.  
  3389.    If FOR_TYPE is nonzero, unaligned bit-field references may be changed to the
  3390.    narrowest type that can hold the value, even if they don't exactly fit.
  3391.    Otherwise, bit-field references are changed to a narrower type
  3392.    only if they can be fetched directly from memory in that type.
  3393.  
  3394.    OP must have integer, real or enumeral type.  Pointers are not allowed!
  3395.  
  3396.    There are some cases where the obvious value we could return
  3397.    would regenerate to OP if converted to OP's type, 
  3398.    but would not extend like OP to wider types.
  3399.    If FOR_TYPE indicates such extension is contemplated, we eschew such values.
  3400.    For example, if OP is (unsigned short)(signed char)-1,
  3401.    we avoid returning (signed char)-1 if FOR_TYPE is int,
  3402.    even though extending that to an unsigned short would regenerate OP,
  3403.    since the result of extending (signed char)-1 to (int)
  3404.    is different from (int) OP.  */
  3405.  
  3406. tree
  3407. get_unwidened (op, for_type)
  3408.      register tree op;
  3409.      tree for_type;
  3410. {
  3411.   /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension.  */
  3412.   /* TYPE_PRECISION is safe in place of type_precision since
  3413.      pointer types are not allowed.  */
  3414.   register tree type = TREE_TYPE (op);
  3415.   register unsigned final_prec
  3416.     = TYPE_PRECISION (for_type != 0 ? for_type : type);
  3417.   register int uns
  3418.     = (for_type != 0 && for_type != type
  3419.        && final_prec > TYPE_PRECISION (type)
  3420.        && TREE_UNSIGNED (type));
  3421.   register tree win = op;
  3422.  
  3423.   while (TREE_CODE (op) == NOP_EXPR)
  3424.     {
  3425.       register int bitschange
  3426.     = TYPE_PRECISION (TREE_TYPE (op))
  3427.       - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
  3428.  
  3429.       /* Truncations are many-one so cannot be removed.
  3430.      Unless we are later going to truncate down even farther.  */
  3431.       if (bitschange < 0
  3432.       && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
  3433.     break;
  3434.  
  3435.       /* See what's inside this conversion.  If we decide to strip it,
  3436.      we will set WIN.  */
  3437.       op = TREE_OPERAND (op, 0);
  3438.  
  3439.       /* If we have not stripped any zero-extensions (uns is 0),
  3440.      we can strip any kind of extension.
  3441.      If we have previously stripped a zero-extension,
  3442.      only zero-extensions can safely be stripped.
  3443.      Any extension can be stripped if the bits it would produce
  3444.      are all going to be discarded later by truncating to FOR_TYPE.  */
  3445.  
  3446.       if (bitschange > 0)
  3447.     {
  3448.       if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
  3449.         win = op;
  3450.       /* TREE_UNSIGNED says whether this is a zero-extension.
  3451.          Let's avoid computing it if it does not affect WIN
  3452.          and if UNS will not be needed again.  */
  3453.       if ((uns || TREE_CODE (op) == NOP_EXPR)
  3454.           && TREE_UNSIGNED (TREE_TYPE (op)))
  3455.         {
  3456.           uns = 1;
  3457.           win = op;
  3458.         }
  3459.     }
  3460.     }
  3461.  
  3462.   if (TREE_CODE (op) == COMPONENT_REF
  3463.       /* Since type_for_size always gives an integer type.  */
  3464.       && TREE_CODE (type) != REAL_TYPE)
  3465.     {
  3466.       unsigned innerprec = TREE_INT_CST_LOW (DECL_SIZE (TREE_OPERAND (op, 1)));
  3467.       type = type_for_size (innerprec, TREE_UNSIGNED (TREE_OPERAND (op, 1)));
  3468.  
  3469.       /* We can get this structure field in the narrowest type it fits in.
  3470.      If FOR_TYPE is 0, do this only for a field that matches the
  3471.      narrower type exactly and is aligned for it
  3472.      The resulting extension to its nominal type (a fullword type)
  3473.      must fit the same conditions as for other extensions.  */
  3474.  
  3475.       if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
  3476.       && (for_type || ! DECL_BIT_FIELD (TREE_OPERAND (op, 1)))
  3477.       && (! uns || final_prec <= innerprec
  3478.           || TREE_UNSIGNED (TREE_OPERAND (op, 1)))
  3479.       && type != 0)
  3480.     {
  3481.       win = build (COMPONENT_REF, type, TREE_OPERAND (op, 0),
  3482.                TREE_OPERAND (op, 1));
  3483.       TREE_SIDE_EFFECTS (win) = TREE_SIDE_EFFECTS (op);
  3484.       TREE_THIS_VOLATILE (win) = TREE_THIS_VOLATILE (op);
  3485.       TREE_RAISES (win) = TREE_RAISES (op);
  3486.     }
  3487.     }
  3488.   return win;
  3489. }
  3490.  
  3491. /* Return OP or a simpler expression for a narrower value
  3492.    which can be sign-extended or zero-extended to give back OP.
  3493.    Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
  3494.    or 0 if the value should be sign-extended.  */
  3495.  
  3496. tree
  3497. get_narrower (op, unsignedp_ptr)
  3498.      register tree op;
  3499.      int *unsignedp_ptr;
  3500. {
  3501.   register int uns = 0;
  3502.   int first = 1;
  3503.   register tree win = op;
  3504.  
  3505.   while (TREE_CODE (op) == NOP_EXPR)
  3506.     {
  3507.       register int bitschange
  3508.     = TYPE_PRECISION (TREE_TYPE (op))
  3509.       - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
  3510.  
  3511.       /* Truncations are many-one so cannot be removed.  */
  3512.       if (bitschange < 0)
  3513.     break;
  3514.  
  3515.       /* See what's inside this conversion.  If we decide to strip it,
  3516.      we will set WIN.  */
  3517.       op = TREE_OPERAND (op, 0);
  3518.  
  3519.       if (bitschange > 0)
  3520.     {
  3521.       /* An extension: the outermost one can be stripped,
  3522.          but remember whether it is zero or sign extension.  */
  3523.       if (first)
  3524.         uns = TREE_UNSIGNED (TREE_TYPE (op));
  3525.       /* Otherwise, if a sign extension has been stripped,
  3526.          only sign extensions can now be stripped;
  3527.          if a zero extension has been stripped, only zero-extensions.  */
  3528.       else if (uns != TREE_UNSIGNED (TREE_TYPE (op)))
  3529.         break;
  3530.       first = 0;
  3531.     }
  3532.       else /* bitschange == 0 */
  3533.     {
  3534.       /* A change in nominal type can always be stripped, but we must
  3535.          preserve the unsignedness.  */
  3536.       if (first)
  3537.         uns = TREE_UNSIGNED (TREE_TYPE (op));
  3538.       first = 0;
  3539.     }
  3540.  
  3541.       win = op;
  3542.     }
  3543.  
  3544.   if (TREE_CODE (op) == COMPONENT_REF
  3545.       /* Since type_for_size always gives an integer type.  */
  3546.       && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE)
  3547.     {
  3548.       unsigned innerprec = TREE_INT_CST_LOW (DECL_SIZE (TREE_OPERAND (op, 1)));
  3549.       tree type = type_for_size (innerprec, TREE_UNSIGNED (op));
  3550.  
  3551.       /* We can get this structure field in a narrower type that fits it,
  3552.      but the resulting extension to its nominal type (a fullword type)
  3553.      must satisfy the same conditions as for other extensions.
  3554.  
  3555.      Do this only for fields that are aligned (not bit-fields),
  3556.      because when bit-field insns will be used there is no
  3557.      advantage in doing this.  */
  3558.  
  3559.       if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
  3560.       && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
  3561.       && (first || uns == TREE_UNSIGNED (TREE_OPERAND (op, 1)))
  3562.       && type != 0)
  3563.     {
  3564.       if (first)
  3565.         uns = TREE_UNSIGNED (TREE_OPERAND (op, 1));
  3566.       win = build (COMPONENT_REF, type, TREE_OPERAND (op, 0),
  3567.                TREE_OPERAND (op, 1));
  3568.       TREE_SIDE_EFFECTS (win) = TREE_SIDE_EFFECTS (op);
  3569.       TREE_THIS_VOLATILE (win) = TREE_THIS_VOLATILE (op);
  3570.       TREE_RAISES (win) = TREE_RAISES (op);
  3571.     }
  3572.     }
  3573.   *unsignedp_ptr = uns;
  3574.   return win;
  3575. }
  3576.  
  3577. /* Return the precision of a type, for arithmetic purposes.
  3578.    Supports all types on which arithmetic is possible
  3579.    (including pointer types).
  3580.    It's not clear yet what will be right for complex types.  */
  3581.  
  3582. int
  3583. type_precision (type)
  3584.      register tree type;
  3585. {
  3586.   return ((TREE_CODE (type) == INTEGER_TYPE
  3587.        || TREE_CODE (type) == ENUMERAL_TYPE
  3588.        || TREE_CODE (type) == REAL_TYPE)
  3589.       ? TYPE_PRECISION (type) : POINTER_SIZE);
  3590. }
  3591.  
  3592. /* Nonzero if integer constant C has a value that is permissible
  3593.    for type TYPE (an INTEGER_TYPE).  */
  3594.  
  3595. int
  3596. int_fits_type_p (c, type)
  3597.      tree c, type;
  3598. {
  3599.   if (TREE_UNSIGNED (type))
  3600.     return (!INT_CST_LT_UNSIGNED (TYPE_MAX_VALUE (type), c)
  3601.         && !INT_CST_LT_UNSIGNED (c, TYPE_MIN_VALUE (type))
  3602.         && (TREE_INT_CST_HIGH (c) >= 0 || TREE_UNSIGNED (TREE_TYPE (c))));
  3603.   else
  3604.     return (!INT_CST_LT (TYPE_MAX_VALUE (type), c)
  3605.         && !INT_CST_LT (c, TYPE_MIN_VALUE (type))
  3606.         && (TREE_INT_CST_HIGH (c) >= 0 || !TREE_UNSIGNED (TREE_TYPE (c))));
  3607. }
  3608.  
  3609. /* Return the innermost context enclosing DECL that is
  3610.    a FUNCTION_DECL, or zero if none.  */
  3611.  
  3612. tree
  3613. decl_function_context (decl)
  3614.      tree decl;
  3615. {
  3616.   tree context;
  3617.  
  3618.   if (TREE_CODE (decl) == ERROR_MARK)
  3619.     return 0;
  3620.  
  3621.   if (TREE_CODE (decl) == SAVE_EXPR)
  3622.     context = SAVE_EXPR_CONTEXT (decl);
  3623.   else
  3624.     context = DECL_CONTEXT (decl);
  3625.  
  3626.   while (context && TREE_CODE (context) != FUNCTION_DECL)
  3627.     {
  3628.       if (TREE_CODE (context) == RECORD_TYPE
  3629.       || TREE_CODE (context) == UNION_TYPE)
  3630.     context = TYPE_CONTEXT (context);
  3631.       else if (TREE_CODE (context) == TYPE_DECL)
  3632.     context = DECL_CONTEXT (context);
  3633.       else if (TREE_CODE (context) == BLOCK)
  3634.     context = BLOCK_SUPERCONTEXT (context);
  3635.       else
  3636.     /* Unhandled CONTEXT !?  */
  3637.     abort ();
  3638.     }
  3639.  
  3640.   return context;
  3641. }
  3642.  
  3643. /* Return the innermost context enclosing DECL that is
  3644.    a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
  3645.    TYPE_DECLs and FUNCTION_DECLs are transparent to this function.  */
  3646.  
  3647. tree
  3648. decl_type_context (decl)
  3649.      tree decl;
  3650. {
  3651.   tree context = DECL_CONTEXT (decl);
  3652.  
  3653.   while (context)
  3654.     {
  3655.       if (TREE_CODE (context) == RECORD_TYPE
  3656.       || TREE_CODE (context) == UNION_TYPE
  3657.       || TREE_CODE (context) == QUAL_UNION_TYPE)
  3658.     return context;
  3659.       if (TREE_CODE (context) == TYPE_DECL
  3660.       || TREE_CODE (context) == FUNCTION_DECL)
  3661.     context = DECL_CONTEXT (context);
  3662.       else if (TREE_CODE (context) == BLOCK)
  3663.     context = BLOCK_SUPERCONTEXT (context);
  3664.       else
  3665.     /* Unhandled CONTEXT!?  */
  3666.     abort ();
  3667.     }
  3668.   return NULL_TREE;
  3669. }
  3670.  
  3671. void
  3672. print_obstack_statistics (str, o)
  3673.      char *str;
  3674.      struct obstack *o;
  3675. {
  3676.   struct _obstack_chunk *chunk = o->chunk;
  3677.   int n_chunks = 0;
  3678.   int n_alloc = 0;
  3679.  
  3680.   while (chunk)
  3681.     {
  3682.       n_chunks += 1;
  3683.       n_alloc += chunk->limit - &chunk->contents[0];
  3684.       chunk = chunk->prev;
  3685.     }
  3686.   fprintf (stderr, "obstack %s: %d bytes, %d chunks\n",
  3687.        str, n_alloc, n_chunks);
  3688. }
  3689. void
  3690. dump_tree_statistics ()
  3691. {
  3692.   int i;
  3693.   int total_nodes, total_bytes;
  3694.  
  3695.   fprintf (stderr, "\n??? tree nodes created\n\n");
  3696. #ifdef GATHER_STATISTICS
  3697.   fprintf (stderr, "Kind                  Nodes     Bytes\n");
  3698.   fprintf (stderr, "-------------------------------------\n");
  3699.   total_nodes = total_bytes = 0;
  3700.   for (i = 0; i < (int) all_kinds; i++)
  3701.     {
  3702.       fprintf (stderr, "%-20s %6d %9d\n", tree_node_kind_names[i],
  3703.            tree_node_counts[i], tree_node_sizes[i]);
  3704.       total_nodes += tree_node_counts[i];
  3705.       total_bytes += tree_node_sizes[i];
  3706.     }
  3707.   fprintf (stderr, "%-20s        %9d\n", "identifier names", id_string_size);
  3708.   fprintf (stderr, "-------------------------------------\n");
  3709.   fprintf (stderr, "%-20s %6d %9d\n", "Total", total_nodes, total_bytes);
  3710.   fprintf (stderr, "-------------------------------------\n");
  3711. #else
  3712.   fprintf (stderr, "(No per-node statistics)\n");
  3713. #endif
  3714.   print_lang_statistics ();
  3715. }
  3716.  
  3717. #define FILE_FUNCTION_PREFIX_LEN 9
  3718.  
  3719. #ifndef NO_DOLLAR_IN_LABEL
  3720. #define FILE_FUNCTION_FORMAT "_GLOBAL_$D$%s"
  3721. #else /* NO_DOLLAR_IN_LABEL */
  3722. #ifndef NO_DOT_IN_LABEL
  3723. #define FILE_FUNCTION_FORMAT "_GLOBAL_.D.%s"
  3724. #else /* NO_DOT_IN_LABEL */
  3725. #define FILE_FUNCTION_FORMAT "__GLOBAL_D_%s"
  3726. #endif    /* NO_DOT_IN_LABEL */
  3727. #endif    /* NO_DOLLAR_IN_LABEL */
  3728.  
  3729. extern char * first_global_object_name;
  3730.  
  3731. /* If KIND=='I', return a suitable global initializer (constructor) name.
  3732.    If KIND=='D', return a suitable global clean-up (destructor) name. */
  3733.  
  3734. tree
  3735. get_file_function_name (kind)
  3736.      int kind;
  3737. {
  3738.   char *buf;
  3739.   register char *p;
  3740.  
  3741.   if (first_global_object_name)
  3742.     p = first_global_object_name;
  3743.   else if (main_input_filename)
  3744.     p = main_input_filename;
  3745.   else
  3746.     p = input_filename;
  3747.  
  3748.   buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p));
  3749.  
  3750.   /* Set up the name of the file-level functions we may need.  */
  3751.   /* Use a global object (which is already required to be unique over
  3752.      the program) rather than the file name (which imposes extra
  3753.      constraints).  -- Raeburn@MIT.EDU, 10 Jan 1990.  */
  3754.   sprintf (buf, FILE_FUNCTION_FORMAT, p);
  3755.  
  3756.   /* Don't need to pull wierd characters out of global names.  */
  3757.   if (p != first_global_object_name)
  3758.     {
  3759.       for (p = buf+11; *p; p++)
  3760.     if (! ((*p >= '0' && *p <= '9')
  3761. #if 0 /* we always want labels, which are valid C++ identifiers (+ `$') */
  3762. #ifndef ASM_IDENTIFY_GCC    /* this is required if `.' is invalid -- k. raeburn */
  3763.            || *p == '.'
  3764. #endif
  3765. #endif
  3766. #ifndef NO_DOLLAR_IN_LABEL    /* this for `$'; unlikely, but... -- kr */
  3767.            || *p == '$'
  3768. #endif
  3769. #ifndef NO_DOT_IN_LABEL        /* this for `.'; unlikely, but... */
  3770.            || *p == '.'
  3771. #endif
  3772.            || (*p >= 'A' && *p <= 'Z')
  3773.            || (*p >= 'a' && *p <= 'z')))
  3774.       *p = '_';
  3775.     }
  3776.  
  3777.   buf[FILE_FUNCTION_PREFIX_LEN] = kind;
  3778.  
  3779.   return get_identifier (buf);
  3780. }
  3781.